summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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();
}