summaryrefslogtreecommitdiff
path: root/library/pch.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/pch.h')
-rw-r--r--library/pch.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/library/pch.h b/library/pch.h
index a8d6ae30..fa384ce5 100644
--- a/library/pch.h
+++ b/library/pch.h
@@ -12,8 +12,8 @@
do NOT use in release build!
#endif
-//#####################################################
-// basic wxWidgets headers
+ //#####################################################
+ // basic wxWidgets headers
#ifndef WX_PRECOMP
#define WX_PRECOMP
#endif
@@ -24,10 +24,10 @@ do NOT use in release build!
#include <wx/wxprec.h>
-//#####################################################
-// #include other rarely changing headers here
+ //#####################################################
+ // #include other rarely changing headers here
-//STL headers
+ //STL headers
#include <string>
#include <vector>
#include <set>
@@ -48,7 +48,7 @@ do NOT use in release build!
#include <new>
#include <stdexcept>
-//other wxWidgets headers
+ //other wxWidgets headers
#include <wx/log.h>
#include <wx/grid.h>
#include <wx/animate.h>
@@ -104,11 +104,11 @@ do NOT use in release build!
#include <wx/help.h>
#include <wx/event.h>
-//other
+ //other
#include "../shared/tinyxml/tinyxml.h"
#include <sys/stat.h>
-//Boost
+ //Boost
#include <boost/shared_ptr.hpp>
#include <boost/scoped_array.hpp>
bgstack15