wxBase compilation fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22881 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2003-08-14 18:20:51 +00:00
parent 4368b1a640
commit d5b12ad9a7
4 changed files with 6 additions and 4 deletions

View File

@@ -10,7 +10,9 @@
#ifndef _WX_STOPWATCH_H_ #ifndef _WX_STOPWATCH_H_
#define _WX_STOPWATCH_H_ #define _WX_STOPWATCH_H_
//
#include "wx/longlong.h"
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// wxStopWatch: measure time intervals with up to 1ms resolution // wxStopWatch: measure time intervals with up to 1ms resolution
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------

View File

@@ -31,7 +31,7 @@
#include "wx/defs.h" #include "wx/defs.h"
#include "wx/object.h" #include "wx/object.h"
#include "wx/string.h" #include "wx/string.h"
#include "wx/timer.h" #include "wx/stopwatch.h"
#include "wx/utils.h" #include "wx/utils.h"
#include "wx/module.h" #include "wx/module.h"
#include "wx/log.h" #include "wx/log.h"

View File

@@ -33,8 +33,8 @@
#include "wx/log.h" #include "wx/log.h"
#endif //WX_PRECOMP #endif //WX_PRECOMP
#include "wx/timer.h"
#include "wx/longlong.h" #include "wx/longlong.h"
#include "wx/stopwatch.h"
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// System headers // System headers

View File

@@ -36,7 +36,7 @@
#include "wx/log.h" #include "wx/log.h"
#include "wx/intl.h" #include "wx/intl.h"
#include "wx/dynarray.h" #include "wx/dynarray.h"
#include "wx/timer.h" #include "wx/stopwatch.h"
#include <stdio.h> #include <stdio.h>
#include <unistd.h> #include <unistd.h>