Index: unittests/tst_threads.cpp =================================================================== diff -u -rf9912fcd4b809e5a7fd59cf855488b6a762198d0 -r465a935949a85d3d1bebd11979737ff38ef96122 --- unittests/tst_threads.cpp (.../tst_threads.cpp) (revision f9912fcd4b809e5a7fd59cf855488b6a762198d0) +++ unittests/tst_threads.cpp (.../tst_threads.cpp) (revision 465a935949a85d3d1bebd11979737ff38ef96122) @@ -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" ); }