diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-04-24 01:06:41 +1000 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2017-04-27 10:38:35 +0200 |
commit | f9f045e7830d184497554e0e438cc478fa990eb6 (patch) | |
tree | 97c1044537c89390fe32548ee9bf3ee0b78c9a8c /basic | |
parent | 8d633023dea4e55755f651822fd7eed3dc14621b (diff) |
tools: move errcode.hxx to the vcl module
Change-Id: I17e5a033de5f0aeb0a726744f7b464cdab6e2ee3
Reviewed-on: https://gerrit.libreoffice.org/36854
Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
Tested-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'basic')
-rw-r--r-- | basic/inc/pch/precompiled_sb.hxx | 2 | ||||
-rw-r--r-- | basic/source/classes/sb.src | 7 | ||||
-rw-r--r-- | basic/source/classes/sbunoobj.cxx | 2 | ||||
-rw-r--r-- | basic/source/runtime/ddectrl.cxx | 2 | ||||
-rw-r--r-- | basic/source/sbx/sbxbool.cxx | 2 | ||||
-rw-r--r-- | basic/source/sbx/sbxbyte.cxx | 2 | ||||
-rw-r--r-- | basic/source/sbx/sbxchar.cxx | 2 | ||||
-rw-r--r-- | basic/source/sbx/sbxcurr.cxx | 2 | ||||
-rw-r--r-- | basic/source/sbx/sbxdate.cxx | 2 | ||||
-rw-r--r-- | basic/source/sbx/sbxdbl.cxx | 2 | ||||
-rw-r--r-- | basic/source/sbx/sbxdec.cxx | 2 | ||||
-rw-r--r-- | basic/source/sbx/sbxexec.cxx | 2 | ||||
-rw-r--r-- | basic/source/sbx/sbxint.cxx | 2 | ||||
-rw-r--r-- | basic/source/sbx/sbxlng.cxx | 2 | ||||
-rw-r--r-- | basic/source/sbx/sbxscan.cxx | 2 | ||||
-rw-r--r-- | basic/source/sbx/sbxsng.cxx | 2 | ||||
-rw-r--r-- | basic/source/sbx/sbxstr.cxx | 2 | ||||
-rw-r--r-- | basic/source/sbx/sbxuint.cxx | 2 | ||||
-rw-r--r-- | basic/source/sbx/sbxulng.cxx | 2 |
19 files changed, 23 insertions, 20 deletions
diff --git a/basic/inc/pch/precompiled_sb.hxx b/basic/inc/pch/precompiled_sb.hxx index f7a0d4df2b8d..85d74021de78 100644 --- a/basic/inc/pch/precompiled_sb.hxx +++ b/basic/inc/pch/precompiled_sb.hxx @@ -78,7 +78,7 @@ #include <svl/SfxBroadcaster.hxx> #include <svl/zforlist.hxx> #include <tools/debug.hxx> -#include <tools/errcode.hxx> +#include <vcl/errcode.hxx> #include <tools/link.hxx> #include <tools/mapunit.hxx> #include <tools/stream.hxx> diff --git a/basic/source/classes/sb.src b/basic/source/classes/sb.src index 5e6560a1906e..91f9d771cbc7 100644 --- a/basic/source/classes/sb.src +++ b/basic/source/classes/sb.src @@ -17,10 +17,13 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <tools/errcode.hxx> -#include "sb.hrc" +#define __RSC + +#include <vcl/errcode.hxx> #include <basic/sberrors.hxx> +#include "sb.hrc" + StringArray RID_BASIC_START { ItemList [ en-US ] = diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx index ee16722056b0..fdfcb75ccf5c 100644 --- a/basic/source/classes/sbunoobj.cxx +++ b/basic/source/classes/sbunoobj.cxx @@ -22,7 +22,7 @@ #include <o3tl/any.hxx> #include <osl/mutex.hxx> #include <vcl/svapp.hxx> -#include <tools/errcode.hxx> +#include <vcl/errcode.hxx> #include <svl/hint.hxx> #include <cppuhelper/implbase.hxx> diff --git a/basic/source/runtime/ddectrl.cxx b/basic/source/runtime/ddectrl.cxx index f8882d062efe..c4cd17ec1765 100644 --- a/basic/source/runtime/ddectrl.cxx +++ b/basic/source/runtime/ddectrl.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <tools/errcode.hxx> +#include <vcl/errcode.hxx> #include <svl/svdde.hxx> #include "ddectrl.hxx" #include <basic/sberrors.hxx> diff --git a/basic/source/sbx/sbxbool.cxx b/basic/source/sbx/sbxbool.cxx index 2e789bd3d100..fc8c78205fbf 100644 --- a/basic/source/sbx/sbxbool.cxx +++ b/basic/source/sbx/sbxbool.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <tools/errcode.hxx> +#include <vcl/errcode.hxx> #include <basic/sbx.hxx> #include "sbxconv.hxx" #include "sbxres.hxx" diff --git a/basic/source/sbx/sbxbyte.cxx b/basic/source/sbx/sbxbyte.cxx index 9d52eebec395..9c4e0e00f3e6 100644 --- a/basic/source/sbx/sbxbyte.cxx +++ b/basic/source/sbx/sbxbyte.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <tools/errcode.hxx> +#include <vcl/errcode.hxx> #include <basic/sbx.hxx> #include "sbxconv.hxx" diff --git a/basic/source/sbx/sbxchar.cxx b/basic/source/sbx/sbxchar.cxx index 478a9d556adf..d4df0fed3d04 100644 --- a/basic/source/sbx/sbxchar.cxx +++ b/basic/source/sbx/sbxchar.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <tools/errcode.hxx> +#include <vcl/errcode.hxx> #include <basic/sbx.hxx> #include "sbxconv.hxx" diff --git a/basic/source/sbx/sbxcurr.cxx b/basic/source/sbx/sbxcurr.cxx index 2f7f05aa7448..130f51e6de27 100644 --- a/basic/source/sbx/sbxcurr.cxx +++ b/basic/source/sbx/sbxcurr.cxx @@ -18,7 +18,7 @@ */ -#include <tools/errcode.hxx> +#include <vcl/errcode.hxx> #include <vcl/svapp.hxx> #include <basic/sbx.hxx> diff --git a/basic/source/sbx/sbxdate.cxx b/basic/source/sbx/sbxdate.cxx index 342aa0ef482c..a5ce46ac6bce 100644 --- a/basic/source/sbx/sbxdate.cxx +++ b/basic/source/sbx/sbxdate.cxx @@ -20,7 +20,7 @@ #include <vcl/svapp.hxx> #include <vcl/settings.hxx> #include <svl/zforlist.hxx> -#include <tools/errcode.hxx> +#include <vcl/errcode.hxx> #include <tools/color.hxx> #include <i18nlangtag/lang.h> #include <basic/sbx.hxx> diff --git a/basic/source/sbx/sbxdbl.cxx b/basic/source/sbx/sbxdbl.cxx index 3c17e6155ef7..e40d8dd55362 100644 --- a/basic/source/sbx/sbxdbl.cxx +++ b/basic/source/sbx/sbxdbl.cxx @@ -19,7 +19,7 @@ #include <config_features.h> -#include <tools/errcode.hxx> +#include <vcl/errcode.hxx> #include <basic/sbx.hxx> #include "sbxconv.hxx" #include "runtime.hxx" diff --git a/basic/source/sbx/sbxdec.cxx b/basic/source/sbx/sbxdec.cxx index fa82edd39178..d429ea9ca433 100644 --- a/basic/source/sbx/sbxdec.cxx +++ b/basic/source/sbx/sbxdec.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <tools/errcode.hxx> +#include <vcl/errcode.hxx> #include <basic/sbx.hxx> #include "sbxconv.hxx" diff --git a/basic/source/sbx/sbxexec.cxx b/basic/source/sbx/sbxexec.cxx index beab3148a373..6a1de98b28d3 100644 --- a/basic/source/sbx/sbxexec.cxx +++ b/basic/source/sbx/sbxexec.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <tools/errcode.hxx> +#include <vcl/errcode.hxx> #include <vcl/svapp.hxx> #include <basic/sbx.hxx> #include <rtl/character.hxx> diff --git a/basic/source/sbx/sbxint.cxx b/basic/source/sbx/sbxint.cxx index d92a0aadb2c0..81624fe64a4b 100644 --- a/basic/source/sbx/sbxint.cxx +++ b/basic/source/sbx/sbxint.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <tools/errcode.hxx> +#include <vcl/errcode.hxx> #include <basic/sbx.hxx> #include "sbxconv.hxx" diff --git a/basic/source/sbx/sbxlng.cxx b/basic/source/sbx/sbxlng.cxx index 73f503d3f98e..5aba02cc484e 100644 --- a/basic/source/sbx/sbxlng.cxx +++ b/basic/source/sbx/sbxlng.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <tools/errcode.hxx> +#include <vcl/errcode.hxx> #include <basic/sbx.hxx> #include "sbxconv.hxx" diff --git a/basic/source/sbx/sbxscan.cxx b/basic/source/sbx/sbxscan.cxx index b23c63f933d2..1b46030fd0a7 100644 --- a/basic/source/sbx/sbxscan.cxx +++ b/basic/source/sbx/sbxscan.cxx @@ -19,7 +19,7 @@ #include <config_features.h> -#include <tools/errcode.hxx> +#include <vcl/errcode.hxx> #include <tools/resmgr.hxx> #include <basic/sbx.hxx> #include "sbxconv.hxx" diff --git a/basic/source/sbx/sbxsng.cxx b/basic/source/sbx/sbxsng.cxx index 74402c593ebe..3877fd35ffd4 100644 --- a/basic/source/sbx/sbxsng.cxx +++ b/basic/source/sbx/sbxsng.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <tools/errcode.hxx> +#include <vcl/errcode.hxx> #include <basic/sbx.hxx> #include "sbxconv.hxx" diff --git a/basic/source/sbx/sbxstr.cxx b/basic/source/sbx/sbxstr.cxx index 404036d6b5bd..1a448c3a95d6 100644 --- a/basic/source/sbx/sbxstr.cxx +++ b/basic/source/sbx/sbxstr.cxx @@ -19,7 +19,7 @@ #include <config_features.h> -#include <tools/errcode.hxx> +#include <vcl/errcode.hxx> #include <basic/sbx.hxx> #include "sbxconv.hxx" #include "sbxres.hxx" diff --git a/basic/source/sbx/sbxuint.cxx b/basic/source/sbx/sbxuint.cxx index 89cf8bba6a68..f3546ebc0805 100644 --- a/basic/source/sbx/sbxuint.cxx +++ b/basic/source/sbx/sbxuint.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <tools/errcode.hxx> +#include <vcl/errcode.hxx> #include <basic/sbx.hxx> #include "sbxconv.hxx" diff --git a/basic/source/sbx/sbxulng.cxx b/basic/source/sbx/sbxulng.cxx index dd79eeac8be7..6a8ac1f866e2 100644 --- a/basic/source/sbx/sbxulng.cxx +++ b/basic/source/sbx/sbxulng.cxx @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#include <tools/errcode.hxx> +#include <vcl/errcode.hxx> #include <basic/sbx.hxx> #include "sbxconv.hxx" |