mirror of https://github.com/odrling/Aegisub
Add a whole slew of missing includes, prior to r3509 config_unix.h used to include stdwx.h, now that I'm fixing the headers I removed it which caused issues when not using precompiled headers.
Originally committed to SVN as r3512.
This commit is contained in:
parent
6a7e4769e3
commit
84996c927f
|
@ -54,7 +54,7 @@
|
|||
#include <wx/slider.h>
|
||||
#include <wx/sizer.h>
|
||||
#include <wx/textctrl.h>
|
||||
|
||||
#include <wx/tglbtn.h>
|
||||
|
||||
//////////////
|
||||
// Prototypes
|
||||
|
|
|
@ -44,6 +44,7 @@
|
|||
#include "aegisub_endian.h"
|
||||
#include <stdint.h>
|
||||
#include <assert.h>
|
||||
#include <wx/log.h>
|
||||
|
||||
#ifndef _WINDOWS
|
||||
#include <sys/mman.h>
|
||||
|
|
|
@ -39,8 +39,8 @@
|
|||
// Headers
|
||||
#include "config.h"
|
||||
|
||||
#include <wx/dirdlg.h>
|
||||
#include <wx/filedlg.h>
|
||||
#include <wx/dirdlg.h>
|
||||
#include <wx/fontdlg.h>
|
||||
#include "browse_button.h"
|
||||
#include "utils.h"
|
||||
|
|
|
@ -40,12 +40,15 @@
|
|||
#include "config.h"
|
||||
|
||||
#ifdef WITH_UNIVCHARDET
|
||||
#include <list>
|
||||
#include <wx/wxprec.h>
|
||||
#include <wx/intl.h>
|
||||
#include <wx/choicdlg.h>
|
||||
|
||||
#include "text_file_reader.h"
|
||||
#include "charset_detect.h"
|
||||
#include "../universalchardet/nsCharSetProber.h"
|
||||
#include <wx/intl.h>
|
||||
#include <wx/choicdlg.h>
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -41,6 +41,7 @@
|
|||
#include <wx/datetime.h>
|
||||
#include <wx/sizer.h>
|
||||
#include <wx/log.h>
|
||||
#include <wx/statline.h>
|
||||
#include "options.h"
|
||||
#include "help_button.h"
|
||||
|
||||
|
|
|
@ -39,10 +39,11 @@
|
|||
|
||||
///////////
|
||||
// Headers
|
||||
#include <wx/wxprec.h>
|
||||
#include <wx/thread.h>
|
||||
#include "include/aegisub/aegisub.h"
|
||||
#include <ffms.h>
|
||||
#include <map>
|
||||
#include <wx/filename.h>
|
||||
#include "dialog_progress.h"
|
||||
|
||||
|
||||
|
|
|
@ -46,6 +46,7 @@
|
|||
#include <wx/rawbmp.h>
|
||||
#include <wx/stdpaths.h>
|
||||
#include <wx/sysopt.h>
|
||||
#include <wx/clipbrd.h>
|
||||
#include "subs_grid.h"
|
||||
#include "frame_main.h"
|
||||
#include "video_display.h"
|
||||
|
|
|
@ -40,9 +40,9 @@
|
|||
|
||||
///////////
|
||||
// Headers
|
||||
#include <wx/string.h>
|
||||
#include "aegisub.h"
|
||||
|
||||
|
||||
//////////////
|
||||
// Prototypes
|
||||
class VideoProvider;
|
||||
|
|
|
@ -42,6 +42,8 @@
|
|||
// Headers
|
||||
#include "aegisub.h"
|
||||
|
||||
#include <wx/string.h>
|
||||
#include <wx/arrstr.h>
|
||||
|
||||
|
||||
/// @class SpellChecker
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
///////////
|
||||
// Headers
|
||||
#include "subtitle_format.h"
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
||||
/// DOCME
|
||||
|
|
|
@ -40,7 +40,7 @@
|
|||
#include "config.h"
|
||||
|
||||
#include "vector2d.h"
|
||||
|
||||
#include <math.h>
|
||||
|
||||
|
||||
/// @brief Null constructor
|
||||
|
|
|
@ -42,6 +42,8 @@
|
|||
// Headers
|
||||
#include <vector>
|
||||
#include <wx/log.h>
|
||||
#include <wx/event.h>
|
||||
#include <wx/button.h>
|
||||
#include "gl_wrap.h"
|
||||
#include "visual_feature.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue