compilation fixes

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
This commit is contained in:
Karsten Ballüder 1999-02-08 10:54:05 +00:00
parent 1f916a19f1
commit f7f1f70f4b
3 changed files with 7 additions and 0 deletions

View 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"

View 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

View 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