--- a/examples/mainwindows/dockwidgets/mainwindow.cpp Tue Jan 26 12:42:25 2010 +0200
+++ b/examples/mainwindows/dockwidgets/mainwindow.cpp Tue Feb 02 00:43:10 2010 +0200
@@ -335,9 +335,9 @@
addDockWidget(Qt::RightDockWidgetArea, dock);
viewMenu->addAction(dock->toggleViewAction());
- connect(customerList, SIGNAL(currentTextChanged(const QString &)),
- this, SLOT(insertCustomer(const QString &)));
- connect(paragraphsList, SIGNAL(currentTextChanged(const QString &)),
- this, SLOT(addParagraph(const QString &)));
+ connect(customerList, SIGNAL(currentTextChanged(QString)),
+ this, SLOT(insertCustomer(QString)));
+ connect(paragraphsList, SIGNAL(currentTextChanged(QString)),
+ this, SLOT(addParagraph(QString)));
}
//! [9]