]> git.saurik.com Git - wxWidgets.git/commitdiff
File/font/colour/dir picker fixes for GTK Universal
authorMichael Wetherell <mike.wetherell@ntlworld.com>
Mon, 17 Jul 2006 15:02:35 +0000 (15:02 +0000)
committerMichael Wetherell <mike.wetherell@ntlworld.com>
Mon, 17 Jul 2006 15:02:35 +0000 (15:02 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40163 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/clrpicker.h
include/wx/filepicker.h
include/wx/fontpicker.h

index d3a2b509d3dc25b48a9a2f19f82ec5f2f73cfd35..13dfd4b8467ae0685fea9acb0b8208ad439cea0f 100644 (file)
@@ -69,7 +69,8 @@ protected:
 //       fact that all classes being mapped as wxColourPickerWidget have the
 //       same prototype for their contructor (and also explains why we use
 //       define instead of a typedef)
-#if defined(__WXGTK24__)        // since GTK > 2.4, there is GtkColorButton
+// since GTK > 2.4, there is GtkColorButton
+#if defined(__WXGTK24__) && !defined(__WXUNIVERSAL__)
     #include "wx/gtk/clrpicker.h"
     #define wxColourPickerWidget      wxColourButton
 #else
index 5aebbe6f6fcfa8cee08438f69d38a0bc641f4b0c..360f12c75e7e85b0b2f8b645a9c85082cda3423d 100644 (file)
@@ -78,7 +78,8 @@ protected:
 // NOTE: wxFileDirPickerCtrlBase will allocate a wx{File|Dir}PickerWidget and this
 //       requires that all classes being mapped as wx{File|Dir}PickerWidget have the
 //       same prototype for the contructor...
-#if defined(__WXGTK26__)        // since GTK >= 2.6, there is GtkFileButton
+// since GTK >= 2.6, there is GtkFileButton
+#if defined(__WXGTK26__) && !defined(__WXUNIVERSAL__)
     #include "wx/gtk/filepicker.h"
     #define wxFilePickerWidget      wxFileButton
     #define wxDirPickerWidget       wxDirButton
index 1137228e00ed86a061701a64eac23aac71c58d05..b6f776e2e1bf734b15499a0fe4c4abe3d80d079f 100644 (file)
@@ -66,7 +66,8 @@ protected:
 // uses the currently selected font to draw the label of the button
 #define wxFNTP_USEFONT_FOR_LABEL      0x0010
 
-#if defined(__WXGTK24__)        // since GTK > 2.4, there is GtkFontButton
+// since GTK > 2.4, there is GtkFontButton
+#if defined(__WXGTK24__) && !defined(__WXUNIVERSAL__)
     #include "wx/gtk/fontpicker.h"
     #define wxFontPickerWidget      wxFontButton
 #else