summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoopesh Chander <roop@forwardbias.in>2009-11-11 19:37:33 +0530
committerRoopesh Chander <roop@forwardbias.in>2009-11-11 19:37:33 +0530
commit22ef68874728320afd72bdbb1e80fa112284c888 (patch)
tree15a97d754ab042c51c57fa7ea7e5173eecc6e53f
parent739b38073991f9cb24220180c604f6be5f482afe (diff)
Qt signal name changed: s/polished/propertiesAssigned/g;
-rw-r--r--mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/mainwindow.cpp b/mainwindow.cpp
index fa76d05..b525b53 100644
--- a/mainwindow.cpp
+++ b/mainwindow.cpp
@@ -54,8 +54,8 @@ MainWindow::MainWindow(QWidget *parent)
seeScraps->assignProperty(this, "webTitleShown", false);
browseWeb->assignProperty(this, "webTitleShown", true);
- connect(seeScraps, SIGNAL(polished()), SLOT(adjustTitle()));
- connect(browseWeb, SIGNAL(polished()), SLOT(adjustTitle()));
+ connect(seeScraps, SIGNAL(propertiesAssigned()), SLOT(adjustTitle()));
+ connect(browseWeb, SIGNAL(propertiesAssigned()), SLOT(adjustTitle()));
m_stateMachine.start();
}