X-Git-Url: https://vaikene.ee/gitweb/pswgen09.html?a=blobdiff_plain;f=src%2Fmain%2FGUI%2Fmain.cpp;h=313d21073e7996df216b055bbc57ea5a6072babc;hb=a81a943bee20df3c7eb34bafb3e3fe878facfe4e;hp=c30e7adba2eb2ae617bc49eedb0d5b417e10df2d;hpb=e4bcb978b8042617a80cbf1ab74a3251a4caf1d8;p=evaf diff --git a/src/main/GUI/main.cpp b/src/main/GUI/main.cpp index c30e7ad..313d210 100644 --- a/src/main/GUI/main.cpp +++ b/src/main/GUI/main.cpp @@ -82,7 +82,7 @@ static eVaf::Common::iLogger::Severity ConsoleSeverityLevel = eVaf::Common::iLog * * This function outputs messages to the console and to the log file. */ -static void messageOutput(QtMsgType type, char const * const msg) +static void messageOutput(QtMsgType type, QMessageLogContext const &, QString const & msg) { static bool inHandler = false; @@ -357,7 +357,7 @@ int main(int argc, char ** argv) // Install our own message handlers Common::iLogger::instance()->installFatalMsgHandler(Internal::fatalMsgHandler); - qInstallMsgHandler(Internal::messageOutput); + qInstallMessageHandler(Internal::messageOutput); // Process command-line arguments if (!Application::processCommandLine(argc, argv)) @@ -409,7 +409,7 @@ int main(int argc, char ** argv) // Run the application EVAF_INFO("Running %s", VER_MODULE_NAME_STR); - rval = app.exec(); + rval = Common::iApp::instance()->exec(); quit = rval != Common::iApp::RC_Restart;