]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/utilsgtk.cpp
PCH-less compilation fixes
[wxWidgets.git] / src / gtk1 / utilsgtk.cpp
index 3439ce69e6fa39b562f155dfef74348943be1234..3aa1d8b457457137230fa7445b1586f4c74bfd7e 100644 (file)
@@ -19,7 +19,7 @@
 #endif
 
 #include "wx/apptrait.h"
-
+#include "wx/gtk1/private/timer.h"
 #include "wx/process.h"
 
 #include "wx/unix/execute.h"
@@ -183,6 +183,11 @@ int wxAddProcessCallback(wxEndProcessData *proc_data, int fd)
     return tag;
 }
 
+wxTimerImpl* wxGUIAppTraits::CreateTimerImpl(wxTimer *timer)
+{
+    return new wxGTKTimerImpl(timer);
+}
+
 // ----------------------------------------------------------------------------
 // wxPlatformInfo-related
 // ----------------------------------------------------------------------------
@@ -201,3 +206,11 @@ wxString wxGUIAppTraits::GetDesktopEnvironment() const
 {
     return wxEmptyString;
 }
+
+#if wxUSE_INTL
+void wxGUIAppTraits::SetLocale()
+{
+    gtk_set_locale();
+}
+#endif
+