Commit 72d43788 authored by Craig Watson's avatar Craig Watson

Corrected signal/slot connection (signal function header changed)

parent cdc0311a
......@@ -134,7 +134,7 @@ int main(int argc, char *argv[])
//app.initialize(false); // should not be needed anymore
QObject::connect(&app, SIGNAL(messageReceived(const QString&)), &app, SLOT(handleOpenMessage(const QString&)));
QObject::connect(&app, SIGNAL(messageReceived(const QString&, QObject*)), &app, SLOT(handleOpenMessage(const QString&)));
qDebug() << "file name argument" << fileToOpen;
int result = app.exec(fileToOpen);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment