Modified:
/trunk/src/lib/MCrux.cpp
=======================================
--- /trunk/src/lib/MCrux.cpp Sun Nov 1 05:42:59 2009
+++ /trunk/src/lib/MCrux.cpp Sun Nov 1 06:09:27 2009
@@ -24,6 +24,7 @@
#include <window/MCruxWindowManager.h>
#ifdef WIN32
+#include "window/MCruxWin32Window.h"
#include "../win32/stdafx.h"
#include <commctrl.h>
#include <objbase.h>
@@ -82,7 +83,7 @@
InitCtrlEx.dwICC = 0x00004000; //ICC_STANDARD_CLASSES;
InitCommonControlsEx(&InitCtrlEx);
- MCruxWindow::initWindowClass(GetModuleHandle(NULL));
+ MCruxWin32Window::initWindowClass(GetModuleHandle(NULL));
// Init COM
OleInitialize(NULL);
@@ -99,7 +100,7 @@
#ifdef WIN32
// Shut down COM.
OleUninitialize();
- MCruxWindow::unInitWindowClass(GetModuleHandle(NULL));
+ MCruxWin32Window::unInitWindowClass(GetModuleHandle(NULL));
#endif
}