forked from mia/Aegisub
Fix reporter compilation without precompiled headers
Originally committed to SVN as r3561.
This commit is contained in:
parent
4f01dab280
commit
ce6cdd77ce
6 changed files with 12 additions and 0 deletions
|
@ -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 {
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
|
||||
#ifndef R_PRECOMP
|
||||
#include <wx/string.h>
|
||||
#include <wx/app.h>
|
||||
#include <wx/apptrait.h>
|
||||
#endif
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
|
||||
#ifndef R_PRECOMP
|
||||
#include <wx/intl.h>
|
||||
#include <wx/log.h>
|
||||
#endif
|
||||
|
||||
#include "report.h"
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
#include <wx/sizer.h>
|
||||
#include <wx/button.h>
|
||||
#include <wx/clipbrd.h>
|
||||
#include <wx/dataobj.h>
|
||||
#endif
|
||||
|
||||
#include "view.h"
|
||||
|
|
Loading…
Reference in a new issue