]> git.saurik.com Git - wxWidgets.git/commitdiff
compilation fixes
authorKarsten Ballüder <ballueder@usa.net>
Mon, 8 Feb 1999 10:54:05 +0000 (10:54 +0000)
committerKarsten Ballüder <ballueder@usa.net>
Mon, 8 Feb 1999 10:54:05 +0000 (10:54 +0000)
PLEASE CHECK valgen.cpp: I had to insert a #include <wx/wx.h> to make it compile.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1642 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/valgen.cpp
src/gtk/tooltip.cpp
src/gtk1/tooltip.cpp

index d90f90f6f066cf150c73df67e7b369b621e1e3b0..76666bcdb1ef5adc8936d38422ad27dc4201458c 100644 (file)
@@ -23,6 +23,7 @@
 #ifndef WX_PRECOMP
 #include "wx/utils.h"
 #include "wx/intl.h"
+#include "wx/wx.h"
 #endif
 
 #include "wx/spinbutt.h"
index dde56c65eeb758a637cffda48f8e8c7ca426b271..cd0a8670e3fc07d2698a82846eef6d5a8e695bf8 100644 (file)
@@ -11,6 +11,8 @@
     #pragma implementation "tooltip.h"
 #endif
 
+#ifdef wxUSE_TOOLTIPS
+
 #include "wx/window.h"
 #include "wx/tooltip.h"
 
@@ -86,4 +88,5 @@ void wxToolTip::SetDelay( long msecs )
 
     gtk_tooltips_set_delay( ss_tooltips, msecs );
 }
+#endif
 
index dde56c65eeb758a637cffda48f8e8c7ca426b271..cd0a8670e3fc07d2698a82846eef6d5a8e695bf8 100644 (file)
@@ -11,6 +11,8 @@
     #pragma implementation "tooltip.h"
 #endif
 
+#ifdef wxUSE_TOOLTIPS
+
 #include "wx/window.h"
 #include "wx/tooltip.h"
 
@@ -86,4 +88,5 @@ void wxToolTip::SetDelay( long msecs )
 
     gtk_tooltips_set_delay( ss_tooltips, msecs );
 }
+#endif