]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/app.cpp
use wxCoord with GetTextExtent(), not long (the long overloads are deprecated and...
[wxWidgets.git] / src / msw / app.cpp
index 3c72ccbde89843d8e136f9840f945b3cd67e9e09..549a8d77daf34554abcc1ead56fdfbae257d4a44 100644 (file)
@@ -52,6 +52,7 @@
 
 #include "wx/msw/private.h"
 #include "wx/msw/ole/oleutils.h"
+#include "wx/msw/private/timer.h"
 
 #if wxUSE_TOOLTIPS
     #include "wx/tooltip.h"
@@ -265,6 +266,16 @@ wxPortId wxGUIAppTraits::GetToolkitVersion(int *majVer, int *minVer) const
 #endif
 }
 
+wxTimerImpl *wxGUIAppTraits::CreateTimerImpl(wxTimer *timer)
+{
+    return new wxMSWTimerImpl(timer);
+}
+
+wxEventLoop* wxGUIAppTraits::CreateEventLoop()
+{
+    return new wxEventLoop;
+}
+
 // ===========================================================================
 // wxApp implementation
 // ===========================================================================