diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2017-08-28 08:40:30 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-29 11:50:43 +0200 |
commit | c8ff3059a79cc7358c68189840b5abcd5680bbe3 (patch) | |
tree | e00d82409e5428b86a0a56d19717a90348ab6178 /basic | |
parent | 0b02b9c19bc0a87ed146d1f079900c71b8b8051c (diff) |
move all the basic errcodes to one file
Change-Id: Ic3353c80ac9fdbd17f17503b1c973c9a7cef0c7f
Reviewed-on: https://gerrit.libreoffice.org/41617
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/comp/token.cxx | 1 | ||||
-rw-r--r-- | basic/source/inc/scanner.hxx | 3 | ||||
-rw-r--r-- | basic/source/sbx/sbxbool.cxx | 1 | ||||
-rw-r--r-- | basic/source/sbx/sbxbyte.cxx | 1 | ||||
-rw-r--r-- | basic/source/sbx/sbxchar.cxx | 1 | ||||
-rw-r--r-- | basic/source/sbx/sbxcoll.cxx | 1 | ||||
-rw-r--r-- | basic/source/sbx/sbxcurr.cxx | 1 | ||||
-rw-r--r-- | basic/source/sbx/sbxdate.cxx | 1 | ||||
-rw-r--r-- | basic/source/sbx/sbxdec.cxx | 1 | ||||
-rw-r--r-- | basic/source/sbx/sbxexec.cxx | 1 | ||||
-rw-r--r-- | basic/source/sbx/sbxint.cxx | 1 | ||||
-rw-r--r-- | basic/source/sbx/sbxlng.cxx | 1 | ||||
-rw-r--r-- | basic/source/sbx/sbxobj.cxx | 1 | ||||
-rw-r--r-- | basic/source/sbx/sbxsng.cxx | 1 | ||||
-rw-r--r-- | basic/source/sbx/sbxuint.cxx | 1 | ||||
-rw-r--r-- | basic/source/sbx/sbxulng.cxx | 1 |
16 files changed, 17 insertions, 1 deletions
diff --git a/basic/source/comp/token.cxx b/basic/source/comp/token.cxx index 44dcebcd95ee..2b8a7f6eb53c 100644 --- a/basic/source/comp/token.cxx +++ b/basic/source/comp/token.cxx @@ -20,6 +20,7 @@ #include <array> +#include <basic/sberrors.hxx> #include "sal/macros.h" #include "basiccharclass.hxx" #include "token.hxx" diff --git a/basic/source/inc/scanner.hxx b/basic/source/inc/scanner.hxx index 15e37b25cd2e..25e038a8a1af 100644 --- a/basic/source/inc/scanner.hxx +++ b/basic/source/inc/scanner.hxx @@ -20,7 +20,8 @@ #ifndef INCLUDED_BASIC_SOURCE_INC_SCANNER_HXX #define INCLUDED_BASIC_SOURCE_INC_SCANNER_HXX -#include <basic/sberrors.hxx> +#include <basic/sbxdef.hxx> +#include <vcl/errcode.hxx> // The scanner is stand-alone, i. e. it can be used from everywhere. // A BASIC-instance is necessary for error messages. Without BASIC diff --git a/basic/source/sbx/sbxbool.cxx b/basic/source/sbx/sbxbool.cxx index 902b1eb88e9c..cb8e0c3eba37 100644 --- a/basic/source/sbx/sbxbool.cxx +++ b/basic/source/sbx/sbxbool.cxx @@ -19,6 +19,7 @@ #include <vcl/errcode.hxx> #include <basic/sbx.hxx> +#include <basic/sberrors.hxx> #include "sbxconv.hxx" #include "sbxres.hxx" diff --git a/basic/source/sbx/sbxbyte.cxx b/basic/source/sbx/sbxbyte.cxx index 2cd4657eb037..423611ac9b98 100644 --- a/basic/source/sbx/sbxbyte.cxx +++ b/basic/source/sbx/sbxbyte.cxx @@ -19,6 +19,7 @@ #include <vcl/errcode.hxx> #include <basic/sbx.hxx> +#include <basic/sberrors.hxx> #include "sbxconv.hxx" #include <rtl/math.hxx> diff --git a/basic/source/sbx/sbxchar.cxx b/basic/source/sbx/sbxchar.cxx index bad4903b6121..593c22799b5c 100644 --- a/basic/source/sbx/sbxchar.cxx +++ b/basic/source/sbx/sbxchar.cxx @@ -19,6 +19,7 @@ #include <vcl/errcode.hxx> #include <basic/sbx.hxx> +#include <basic/sberrors.hxx> #include "sbxconv.hxx" #include <rtl/math.hxx> diff --git a/basic/source/sbx/sbxcoll.cxx b/basic/source/sbx/sbxcoll.cxx index af752516baea..9b41cb2a18b3 100644 --- a/basic/source/sbx/sbxcoll.cxx +++ b/basic/source/sbx/sbxcoll.cxx @@ -20,6 +20,7 @@ #include <tools/stream.hxx> #include <basic/sbx.hxx> +#include <basic/sberrors.hxx> #include "sbxres.hxx" diff --git a/basic/source/sbx/sbxcurr.cxx b/basic/source/sbx/sbxcurr.cxx index 70856e7b602c..ed0badced771 100644 --- a/basic/source/sbx/sbxcurr.cxx +++ b/basic/source/sbx/sbxcurr.cxx @@ -22,6 +22,7 @@ #include <vcl/svapp.hxx> #include <basic/sbx.hxx> +#include <basic/sberrors.hxx> #include <basic/sbxvar.hxx> #include "sbxconv.hxx" diff --git a/basic/source/sbx/sbxdate.cxx b/basic/source/sbx/sbxdate.cxx index a5ce46ac6bce..bf85af3f7c80 100644 --- a/basic/source/sbx/sbxdate.cxx +++ b/basic/source/sbx/sbxdate.cxx @@ -24,6 +24,7 @@ #include <tools/color.hxx> #include <i18nlangtag/lang.h> #include <basic/sbx.hxx> +#include <basic/sberrors.hxx> #include "sbxconv.hxx" #include "math.h" #include <comphelper/processfactory.hxx> diff --git a/basic/source/sbx/sbxdec.cxx b/basic/source/sbx/sbxdec.cxx index b0b7381a39eb..7060e3a4db35 100644 --- a/basic/source/sbx/sbxdec.cxx +++ b/basic/source/sbx/sbxdec.cxx @@ -20,6 +20,7 @@ #include <vcl/errcode.hxx> #include <basic/sbx.hxx> +#include <basic/sberrors.hxx> #include "sbxconv.hxx" #include <com/sun/star/bridge/oleautomation/Decimal.hpp> diff --git a/basic/source/sbx/sbxexec.cxx b/basic/source/sbx/sbxexec.cxx index 6a1de98b28d3..b33905ba20f9 100644 --- a/basic/source/sbx/sbxexec.cxx +++ b/basic/source/sbx/sbxexec.cxx @@ -20,6 +20,7 @@ #include <vcl/errcode.hxx> #include <vcl/svapp.hxx> #include <basic/sbx.hxx> +#include <basic/sberrors.hxx> #include <rtl/character.hxx> diff --git a/basic/source/sbx/sbxint.cxx b/basic/source/sbx/sbxint.cxx index 8a6527614190..7edef31d48d3 100644 --- a/basic/source/sbx/sbxint.cxx +++ b/basic/source/sbx/sbxint.cxx @@ -19,6 +19,7 @@ #include <vcl/errcode.hxx> #include <basic/sbx.hxx> +#include <basic/sberrors.hxx> #include "sbxconv.hxx" #include <rtl/math.hxx> diff --git a/basic/source/sbx/sbxlng.cxx b/basic/source/sbx/sbxlng.cxx index 9c906f631e40..0eadecb07423 100644 --- a/basic/source/sbx/sbxlng.cxx +++ b/basic/source/sbx/sbxlng.cxx @@ -19,6 +19,7 @@ #include <vcl/errcode.hxx> #include <basic/sbx.hxx> +#include <basic/sberrors.hxx> #include "sbxconv.hxx" #include <rtl/math.hxx> diff --git a/basic/source/sbx/sbxobj.cxx b/basic/source/sbx/sbxobj.cxx index 0a17ccdb3319..9e331905f73b 100644 --- a/basic/source/sbx/sbxobj.cxx +++ b/basic/source/sbx/sbxobj.cxx @@ -24,6 +24,7 @@ #include <tools/debug.hxx> #include <tools/stream.hxx> #include <basic/sbx.hxx> +#include <basic/sberrors.hxx> #include <svl/SfxBroadcaster.hxx> #include "sbxres.hxx" diff --git a/basic/source/sbx/sbxsng.cxx b/basic/source/sbx/sbxsng.cxx index 582a11db7ea9..fc972379f133 100644 --- a/basic/source/sbx/sbxsng.cxx +++ b/basic/source/sbx/sbxsng.cxx @@ -19,6 +19,7 @@ #include <vcl/errcode.hxx> #include <basic/sbx.hxx> +#include <basic/sberrors.hxx> #include "sbxconv.hxx" float ImpGetSingle( const SbxValues* p ) diff --git a/basic/source/sbx/sbxuint.cxx b/basic/source/sbx/sbxuint.cxx index a02464dc6cf0..d093b5d4b2da 100644 --- a/basic/source/sbx/sbxuint.cxx +++ b/basic/source/sbx/sbxuint.cxx @@ -19,6 +19,7 @@ #include <vcl/errcode.hxx> #include <basic/sbx.hxx> +#include <basic/sberrors.hxx> #include "sbxconv.hxx" sal_uInt16 ImpGetUShort( const SbxValues* p ) diff --git a/basic/source/sbx/sbxulng.cxx b/basic/source/sbx/sbxulng.cxx index c694b50cecb6..0db10aff19d5 100644 --- a/basic/source/sbx/sbxulng.cxx +++ b/basic/source/sbx/sbxulng.cxx @@ -19,6 +19,7 @@ #include <vcl/errcode.hxx> #include <basic/sbx.hxx> +#include <basic/sberrors.hxx> #include "sbxconv.hxx" sal_uInt32 ImpGetULong( const SbxValues* p ) |