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 /cui/inc | |
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 'cui/inc')
-rw-r--r-- | cui/inc/pch/precompiled_cui.hxx | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/cui/inc/pch/precompiled_cui.hxx b/cui/inc/pch/precompiled_cui.hxx index 36fa752b552a..fc30947e42b7 100644 --- a/cui/inc/pch/precompiled_cui.hxx +++ b/cui/inc/pch/precompiled_cui.hxx @@ -13,17 +13,16 @@ manual changes will be rewritten by the next run of update_pch.sh (which presumably also fixes all possible problems, so it's usually better to use it). - Generated on 2015-11-14 14:16:31 using: + Generated on 2016-02-06 12:31:15 using: ./bin/update_pch cui cui --cutoff=8 --exclude:system --include:module --exclude:local If after updating build fails, use the following command to locate conflicting headers: - ./bin/update_pch_bisect ./cui/inc/pch/precompiled_cui.hxx "/opt/lo/bin/make cui.build" --find-conflicts + ./bin/update_pch_bisect ./cui/inc/pch/precompiled_cui.hxx "make cui.build" --find-conflicts */ #include <algorithm> #include <cassert> #include <climits> -#include <config_features.h> #include <config_global.h> #include <config_typesizes.h> #include <config_vcl.h> @@ -32,6 +31,7 @@ #include <cstdlib> #include <cstring> #include <deque> +#include <exception> #include <float.h> #include <functional> #include <iomanip> @@ -57,7 +57,6 @@ #include <boost/intrusive_ptr.hpp> #include <boost/optional.hpp> #include <boost/optional/optional.hpp> -#include <boost/shared_array.hpp> #include <osl/diagnose.h> #include <osl/doublecheckedlocking.h> #include <osl/endian.h> @@ -112,7 +111,6 @@ #include <salhelper/singletonref.hxx> #include <vcl/alpha.hxx> #include <vcl/animate.hxx> -#include <vcl/apptypes.hxx> #include <vcl/bitmap.hxx> #include <vcl/bitmapex.hxx> #include <vcl/builder.hxx> @@ -143,6 +141,7 @@ #include <vcl/image.hxx> #include <vcl/impdel.hxx> #include <vcl/inputctx.hxx> +#include <vcl/inputtypes.hxx> #include <vcl/keycod.hxx> #include <vcl/keycodes.hxx> #include <vcl/layout.hxx> @@ -160,6 +159,7 @@ #include <vcl/pointr.hxx> #include <vcl/ptrstyle.hxx> #include <vcl/region.hxx> +#include <vcl/salgtype.hxx> #include <vcl/salnativewidgets.hxx> #include <vcl/scheduler.hxx> #include <vcl/scopedbitmapaccess.hxx> @@ -221,6 +221,7 @@ #include <com/sun/star/embed/XStorage.hpp> #include <com/sun/star/frame/Desktop.hpp> #include <com/sun/star/frame/FeatureStateEvent.hpp> +#include <com/sun/star/frame/XDispatchProvider.hpp> #include <com/sun/star/frame/XFrame.hpp> #include <com/sun/star/frame/XModel.hpp> #include <com/sun/star/frame/XTerminateListener.hpp> @@ -250,6 +251,7 @@ #include <com/sun/star/lang/XTypeProvider.hpp> #include <com/sun/star/lang/XUnoTunnel.hpp> #include <com/sun/star/registry/XRegistryKey.hpp> +#include <com/sun/star/style/NumberingType.hpp> #include <com/sun/star/style/XStyle.hpp> #include <com/sun/star/ui/dialogs/ExecutableDialogResults.hpp> #include <com/sun/star/ui/dialogs/FolderPicker.hpp> @@ -305,9 +307,17 @@ #include <cppuhelper/weakref.hxx> #include <drawinglayer/drawinglayerdllapi.h> #include <drawinglayer/primitive2d/baseprimitive2d.hxx> +#include <editeng/editdata.hxx> #include <editeng/editengdllapi.h> +#include <editeng/editstat.hxx> +#include <editeng/eedata.hxx> #include <editeng/forbiddencharacterstable.hxx> +#include <editeng/numdef.hxx> +#include <editeng/numitem.hxx> +#include <editeng/outliner.hxx> +#include <editeng/paragraphdata.hxx> #include <editeng/svxenum.hxx> +#include <editeng/svxfont.hxx> #include <editeng/unolingu.hxx> #include <i18nlangtag/i18nlangtagdllapi.h> #include <i18nlangtag/lang.h> @@ -336,6 +346,7 @@ #include <svl/hint.hxx> #include <svl/intitem.hxx> #include <svl/itemset.hxx> +#include <svl/languageoptions.hxx> #include <svl/lstner.hxx> #include <svl/macitem.hxx> #include <svl/poolitem.hxx> @@ -434,6 +445,7 @@ #include <svx/xtable.hxx> #include <svx/xtextit0.hxx> #include <tools/color.hxx> +#include <tools/contnr.hxx> #include <tools/date.hxx> #include <tools/datetime.hxx> #include <tools/debug.hxx> @@ -470,6 +482,7 @@ #include <unotools/charclass.hxx> #include <unotools/collatorwrapper.hxx> #include <unotools/configitem.hxx> +#include <unotools/fontcvt.hxx> #include <unotools/fontdefs.hxx> #include <unotools/localedatawrapper.hxx> #include <unotools/options.hxx> |