Index: unittests/tst_threads.cpp =================================================================== diff -u -r54c4136d95375116e6daf23b7d4179159cf13d0c -rfec49d1a8016d25cedff4cf2fefb4c4cd1c7c259 --- unittests/tst_threads.cpp (.../tst_threads.cpp) (revision 54c4136d95375116e6daf23b7d4179159cf13d0c) +++ unittests/tst_threads.cpp (.../tst_threads.cpp) (revision fec49d1a8016d25cedff4cf2fefb4c4cd1c7c259) @@ -42,7 +42,7 @@ QCOMPARE( _MessageAcknowModel .init(Threads::_CanAcknow_Thread ), ! _MessageAcknowModel .init(Threads::_CanAcknow_Thread )); QCOMPARE( _MessageDispatcher .init(Threads::_CanMessage_Thread ), ! _MessageDispatcher .init(Threads::_CanMessage_Thread )); QCOMPARE( _ApplicationController .init(Threads::_Application_Thread ), ! _ApplicationController .init(Threads::_Application_Thread )); - QCOMPARE( _GuiController .init(Threads::_Application_Thread ), ! _GuiController .init(Threads::_Application_Thread )); + QCOMPARE( _GuiController .init(Threads::_Gui_Thread ), ! _GuiController .init(Threads::_Gui_Thread )); } void tst_threads::tst_Thread_names() @@ -53,7 +53,7 @@ QCOMPARE( _FrameInterface .thread()->objectName(), "Can::FrameInterface_Thread" ); QCOMPARE( _MessageAcknowModel .thread()->objectName(), "Can::MessageAcknowModel_Thread" ); QCOMPARE( _MessageDispatcher .thread()->objectName(), "Can::MessageDispatcher_Thread" ); - QCOMPARE( _ApplicationController .thread()->objectName(), "Gui::GuiController_Thread" ); + QCOMPARE( _ApplicationController .thread()->objectName(), "Gui::ApplicationController_Thread" ); QCOMPARE( _GuiController .thread()->objectName(), "Gui::GuiController_Thread" ); }