summaryrefslogtreecommitdiffstats
path: root/examples/testapp/mainwindow.cpp
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@nokia.com>2011-07-27 13:07:20 +0200
committerTim Jenssen <tim.jenssen@nokia.com>2011-07-27 14:26:11 +0200
commit73ca2b5e4a4b175e413d5b921f49fb4cca08d6cf (patch)
treea98a48e262b255a9f613c071b900778effe292ea /examples/testapp/mainwindow.cpp
parent7735fa0aa0fd21bd47fd0014bd3866c76d3a1bb2 (diff)
added const to method where possible and clean up the code(removed unused methods)
Reviewed-By: Niels Weber
Diffstat (limited to 'examples/testapp/mainwindow.cpp')
-rw-r--r--examples/testapp/mainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/testapp/mainwindow.cpp b/examples/testapp/mainwindow.cpp
index f1a0c0e01..7683671e6 100644
--- a/examples/testapp/mainwindow.cpp
+++ b/examples/testapp/mainwindow.cpp
@@ -120,7 +120,7 @@ void MainWindow::checkForUpdates()
connect(&m_core, SIGNAL(installationProgressTextChanged(QString)), &dialog,
SLOT(setLabelText(QString)));
connect(&m_core, SIGNAL(installationProgressChanged(int)), &dialog, SLOT(setValue(int)));
- m_core.installSelectedComponents();
+ //m_core.installSelectedComponents(); //method doesn't exist anymore
updatesInstalled();
} catch (const QInstaller::Error &error) {
QMessageBox::critical(this, tr("Check for Updates"), tr("Error while installing updates:\n%1")