From: <arn...@us...> - 2006-09-04 15:16:22
|
Revision: 645 http://svn.sourceforge.net/dcplusplus/?rev=645&view=rev Author: arnetheduck Date: 2006-09-04 08:16:01 -0700 (Mon, 04 Sep 2006) Log Message: ----------- no more opencow Modified Paths: -------------- dcplusplus/trunk/windows/MainFrm.cpp dcplusplus/trunk/windows/SingleInstance.h Modified: dcplusplus/trunk/windows/MainFrm.cpp =================================================================== --- dcplusplus/trunk/windows/MainFrm.cpp 2006-09-04 14:02:22 UTC (rev 644) +++ dcplusplus/trunk/windows/MainFrm.cpp 2006-09-04 15:16:01 UTC (rev 645) @@ -104,9 +104,7 @@ WinUtil::init(m_hWnd); - //trayMessage = RegisterWindowMessage(_T("TaskbarCreated")); - // Use ASCII version as opencow doesn't support the wide one... - trayMessage = RegisterWindowMessageA("TaskbarCreated"); + trayMessage = RegisterWindowMessage(_T("TaskbarCreated")); TimerManager::getInstance()->start(); Modified: dcplusplus/trunk/windows/SingleInstance.h =================================================================== --- dcplusplus/trunk/windows/SingleInstance.h 2006-09-04 14:02:22 UTC (rev 644) +++ dcplusplus/trunk/windows/SingleInstance.h 2006-09-04 15:16:01 UTC (rev 645) @@ -24,7 +24,7 @@ #endif // _MSC_VER > 1000 #define WMU_WHERE_ARE_YOU_MSG _T("WMU_WHERE_ARE_YOU-{885D4B75-6606-4add-A8DE-EEEDC04181F1}") -const UINT WMU_WHERE_ARE_YOU = ::RegisterWindowMessageA("WMU_WHERE_ARE_YOU_MSG"); +const UINT WMU_WHERE_ARE_YOU = ::RegisterWindowMessage(_T("WMU_WHERE_ARE_YOU_MSG")); class SingleInstance { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |