forked from quickshell/quickshell
fix: thisptr lints for base classes
This commit is contained in:
parent
d76100781f
commit
7a18ce8a55
3 changed files with 17 additions and 16 deletions
|
@ -107,23 +107,23 @@ void ProxyWindowBase::dataRemoveLast(QQmlListProperty<QObject>* prop) {
|
|||
}
|
||||
|
||||
void ProxyFloatingWindow::earlyInit(QObject* old) {
|
||||
ProxyWindowBase::earlyInit(old);
|
||||
this->ProxyWindowBase::earlyInit(old);
|
||||
this->geometryLocked = this->window->isVisible();
|
||||
}
|
||||
|
||||
void ProxyFloatingWindow::componentComplete() {
|
||||
ProxyWindowBase::componentComplete();
|
||||
this->ProxyWindowBase::componentComplete();
|
||||
this->geometryLocked = true;
|
||||
}
|
||||
|
||||
void ProxyFloatingWindow::setWidth(qint32 value) {
|
||||
if (!this->geometryLocked) {
|
||||
ProxyWindowBase::setWidth(value);
|
||||
this->ProxyWindowBase::setWidth(value);
|
||||
}
|
||||
}
|
||||
|
||||
void ProxyFloatingWindow::setHeight(qint32 value) {
|
||||
if (!this->geometryLocked) {
|
||||
ProxyWindowBase::setHeight(value);
|
||||
this->ProxyWindowBase::setHeight(value);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue