summaryrefslogtreecommitdiff
path: root/wx+/pch.h
diff options
context:
space:
mode:
Diffstat (limited to 'wx+/pch.h')
-rw-r--r--wx+/pch.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/wx+/pch.h b/wx+/pch.h
index b27cc656..5bfdb6cb 100644
--- a/wx+/pch.h
+++ b/wx+/pch.h
@@ -13,11 +13,11 @@
#endif
//#####################################################
+
// basic wxWidgets headers
#ifndef WX_PRECOMP
#define WX_PRECOMP
#endif
-
#include <wx/wxprec.h> //includes <wx/msw/wrapwin.h>
//other wxWidgets headers
@@ -37,7 +37,8 @@
#include <wx/config.h>
#include <wx/dc.h>
#include <wx/dialog.h>
-#include <wx/dir.h>
+//#include <wx/dir.h> -> MSVC: avoid annoying IntelliSense error: wxZipStreamLink
+//#include <wx/zipstrm.h>
#include <wx/dnd.h>
#include <wx/file.h>
#include <wx/filename.h>
@@ -70,15 +71,11 @@
#include <wx/thread.h>
#include <wx/utils.h>
#include <wx/wfstream.h>
-#include <wx/zipstrm.h>
#include <wx/scrolwin.h>
#include <wx/notebook.h>
#include <wx/help.h>
#include <wx/event.h>
-//#####################################################
-// #include other rarely changing headers here
-
//STL headers
#include <string>
#include <vector>
bgstack15