diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-06 12:50:45 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-06 12:55:43 +1100 |
commit | 249e3d6d1927705aac81fa7f40fccc5c82be43d7 (patch) | |
tree | 0ef2341deed4549db48c1ddd4bd54312bc6346a6 /vcl/win/app | |
parent | 9739aa9f40367a51dd71ce23f091e970d98947d5 (diff) |
vcl: split exception types from input types
Having them in the file apptypes.hxx isn't necessary helpful, IMO so
I've split the types into inputtypes.hxx and exceptiontypes.hxx
Change-Id: I89a1ff168c3ae276b2f5486669d4ec2dda062d57
Diffstat (limited to 'vcl/win/app')
-rw-r--r-- | vcl/win/app/salinst.cxx | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/vcl/win/app/salinst.cxx b/vcl/win/app/salinst.cxx index 55f606f77b37..1e37ece50411 100644 --- a/vcl/win/app/salinst.cxx +++ b/vcl/win/app/salinst.cxx @@ -24,23 +24,23 @@ #include <osl/file.hxx> #include <comphelper/solarmutex.hxx> -#include <vcl/apptypes.hxx> +#include <vcl/inputtypes.hxx> #include <vcl/opengl/OpenGLHelper.hxx> #include <vcl/opengl/OpenGLContext.hxx> #include <vcl/timer.hxx> -#include <opengl/salbmp.hxx> -#include <win/wincomp.hxx> -#include <win/salids.hrc> -#include <win/saldata.hxx> -#include <win/salinst.h> -#include <win/salframe.h> -#include <win/salobj.h> -#include <win/saltimer.h> -#include <win/salbmp.h> - -#include <salimestatus.hxx> -#include <salsys.hxx> +#include "opengl/salbmp.hxx" +#include "win/wincomp.hxx" +#include "win/salids.hrc" +#include "win/saldata.hxx" +#include "win/salinst.h" +#include "win/salframe.h" +#include "win/salobj.h" +#include "win/saltimer.h" +#include "win/salbmp.h" + +#include "salimestatus.hxx" +#include "salsys.hxx" #if defined _MSC_VER #ifndef min |