Fix reporter compilation without precompiled headers

Originally committed to SVN as r3561.
This commit is contained in:
Grigori Goronzy 2009-09-26 14:53:27 +00:00
parent 4f01dab280
commit ce6cdd77ce
6 changed files with 12 additions and 0 deletions

View File

@ -18,6 +18,10 @@
/// @see aegisub.cpp
/// @ingroup base
#ifndef R_PRECOMP
#include <wx/fileconf.h>
#endif
/// @class Aegisub
/// @brief Gather Aegisub information from the config file or otherwise.
class Aegisub {

View File

@ -22,6 +22,7 @@
#ifndef R_PRECOMP
#include <wx/platinfo.h>
#include <wx/string.h>
#include <wx/intl.h>
#endif
/// @brief Grab platform-specific information.

View File

@ -20,6 +20,7 @@
#ifndef R_PRECOMP
#include <wx/string.h>
#include <wx/app.h>
#include <wx/apptrait.h>
#endif

View File

@ -18,6 +18,10 @@
/// @see progress.cpp
/// @ingroup base io
#ifndef R_PRECOMP
#include <wx/progdlg.h>
#endif
/// @class Progress
/// @brief Progress bar.
/// @note The Constructor decleration is in main.cpp

View File

@ -20,6 +20,7 @@
#ifndef R_PRECOMP
#include <wx/intl.h>
#include <wx/log.h>
#endif
#include "report.h"

View File

@ -23,6 +23,7 @@
#include <wx/sizer.h>
#include <wx/button.h>
#include <wx/clipbrd.h>
#include <wx/dataobj.h>
#endif
#include "view.h"