mirror of
https://github.com/odrling/Aegisub
synced 2025-04-11 22:56:02 +02:00
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/slider.h>
|
||||||
#include <wx/sizer.h>
|
#include <wx/sizer.h>
|
||||||
#include <wx/textctrl.h>
|
#include <wx/textctrl.h>
|
||||||
|
#include <wx/tglbtn.h>
|
||||||
|
|
||||||
//////////////
|
//////////////
|
||||||
// Prototypes
|
// Prototypes
|
||||||
|
@ -44,6 +44,7 @@
|
|||||||
#include "aegisub_endian.h"
|
#include "aegisub_endian.h"
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
#include <wx/log.h>
|
||||||
|
|
||||||
#ifndef _WINDOWS
|
#ifndef _WINDOWS
|
||||||
#include <sys/mman.h>
|
#include <sys/mman.h>
|
||||||
|
@ -39,8 +39,8 @@
|
|||||||
// Headers
|
// Headers
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
#include <wx/dirdlg.h>
|
|
||||||
#include <wx/filedlg.h>
|
#include <wx/filedlg.h>
|
||||||
|
#include <wx/dirdlg.h>
|
||||||
#include <wx/fontdlg.h>
|
#include <wx/fontdlg.h>
|
||||||
#include "browse_button.h"
|
#include "browse_button.h"
|
||||||
#include "utils.h"
|
#include "utils.h"
|
||||||
|
@ -40,12 +40,15 @@
|
|||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
#ifdef WITH_UNIVCHARDET
|
#ifdef WITH_UNIVCHARDET
|
||||||
|
#include <list>
|
||||||
#include <wx/wxprec.h>
|
#include <wx/wxprec.h>
|
||||||
|
#include <wx/intl.h>
|
||||||
|
#include <wx/choicdlg.h>
|
||||||
|
|
||||||
#include "text_file_reader.h"
|
#include "text_file_reader.h"
|
||||||
#include "charset_detect.h"
|
#include "charset_detect.h"
|
||||||
#include "../universalchardet/nsCharSetProber.h"
|
#include "../universalchardet/nsCharSetProber.h"
|
||||||
#include <wx/intl.h>
|
|
||||||
#include <wx/choicdlg.h>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -41,6 +41,7 @@
|
|||||||
#include <wx/datetime.h>
|
#include <wx/datetime.h>
|
||||||
#include <wx/sizer.h>
|
#include <wx/sizer.h>
|
||||||
#include <wx/log.h>
|
#include <wx/log.h>
|
||||||
|
#include <wx/statline.h>
|
||||||
#include "options.h"
|
#include "options.h"
|
||||||
#include "help_button.h"
|
#include "help_button.h"
|
||||||
|
|
||||||
|
@ -39,10 +39,11 @@
|
|||||||
|
|
||||||
///////////
|
///////////
|
||||||
// Headers
|
// Headers
|
||||||
#include <wx/wxprec.h>
|
|
||||||
#include <wx/thread.h>
|
#include <wx/thread.h>
|
||||||
#include "include/aegisub/aegisub.h"
|
#include "include/aegisub/aegisub.h"
|
||||||
#include <ffms.h>
|
#include <ffms.h>
|
||||||
|
#include <map>
|
||||||
|
#include <wx/filename.h>
|
||||||
#include "dialog_progress.h"
|
#include "dialog_progress.h"
|
||||||
|
|
||||||
|
|
||||||
|
@ -46,6 +46,7 @@
|
|||||||
#include <wx/rawbmp.h>
|
#include <wx/rawbmp.h>
|
||||||
#include <wx/stdpaths.h>
|
#include <wx/stdpaths.h>
|
||||||
#include <wx/sysopt.h>
|
#include <wx/sysopt.h>
|
||||||
|
#include <wx/clipbrd.h>
|
||||||
#include "subs_grid.h"
|
#include "subs_grid.h"
|
||||||
#include "frame_main.h"
|
#include "frame_main.h"
|
||||||
#include "video_display.h"
|
#include "video_display.h"
|
||||||
|
@ -40,9 +40,9 @@
|
|||||||
|
|
||||||
///////////
|
///////////
|
||||||
// Headers
|
// Headers
|
||||||
|
#include <wx/string.h>
|
||||||
#include "aegisub.h"
|
#include "aegisub.h"
|
||||||
|
|
||||||
|
|
||||||
//////////////
|
//////////////
|
||||||
// Prototypes
|
// Prototypes
|
||||||
class VideoProvider;
|
class VideoProvider;
|
||||||
|
@ -42,6 +42,8 @@
|
|||||||
// Headers
|
// Headers
|
||||||
#include "aegisub.h"
|
#include "aegisub.h"
|
||||||
|
|
||||||
|
#include <wx/string.h>
|
||||||
|
#include <wx/arrstr.h>
|
||||||
|
|
||||||
|
|
||||||
/// @class SpellChecker
|
/// @class SpellChecker
|
||||||
|
@ -41,7 +41,7 @@
|
|||||||
///////////
|
///////////
|
||||||
// Headers
|
// Headers
|
||||||
#include "subtitle_format.h"
|
#include "subtitle_format.h"
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
|
||||||
/// DOCME
|
/// DOCME
|
||||||
|
@ -40,7 +40,7 @@
|
|||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
#include "vector2d.h"
|
#include "vector2d.h"
|
||||||
|
#include <math.h>
|
||||||
|
|
||||||
|
|
||||||
/// @brief Null constructor
|
/// @brief Null constructor
|
||||||
|
@ -42,6 +42,8 @@
|
|||||||
// Headers
|
// Headers
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <wx/log.h>
|
#include <wx/log.h>
|
||||||
|
#include <wx/event.h>
|
||||||
|
#include <wx/button.h>
|
||||||
#include "gl_wrap.h"
|
#include "gl_wrap.h"
|
||||||
#include "visual_feature.h"
|
#include "visual_feature.h"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user