aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina/RootSubWindow.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-04-13 08:13:41 -0400
committerKen Moore <ken@ixsystems.com>2017-04-13 08:13:41 -0400
commit08418849bf30416d5d7083d2c69a36ab261d8cbb (patch)
tree85f27cbf5c3bf5080d3e685b30e45957e0dbb0bf /src-qt5/core/libLumina/RootSubWindow.cpp
parentAdd in all the required mimetypes (diff)
downloadlumina-08418849bf30416d5d7083d2c69a36ab261d8cbb.tar.gz
lumina-08418849bf30416d5d7083d2c69a36ab261d8cbb.tar.bz2
lumina-08418849bf30416d5d7083d2c69a36ab261d8cbb.zip
Commit some small changes I still had on my main workstation:
1) Better support for the "inherited" property in icon themes 2) Some other random WM stuff
Diffstat (limited to 'src-qt5/core/libLumina/RootSubWindow.cpp')
-rw-r--r--src-qt5/core/libLumina/RootSubWindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/libLumina/RootSubWindow.cpp b/src-qt5/core/libLumina/RootSubWindow.cpp
index ba682077..688a1d07 100644
--- a/src-qt5/core/libLumina/RootSubWindow.cpp
+++ b/src-qt5/core/libLumina/RootSubWindow.cpp
@@ -23,7 +23,7 @@ RootSubWindow::RootSubWindow(QWidget *root, NativeWindow *win) : QFrame(root){
initWindowFrame();
LoadProperties( NativeWindow::allProperties() );
//Hookup the signals/slots
- connect(WIN, SIGNAL(PropertiesChanged(QList<NativeWindow::Property>, QList<QVariant>)), this, SLOT(PropertiesChanged(QList<NativeWindow::Property>, QList<QVariant>)));
+ connect(WIN, SIGNAL(PropertiesChanged(QList<NativeWindow::Property>, QList<QVariant>)), this, SLOT(propertiesChanged(QList<NativeWindow::Property>, QList<QVariant>)));
}
RootSubWindow::~RootSubWindow(){
bgstack15