diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-09-12 12:15:35 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-09-14 08:34:38 +0200 |
commit | fd3888c69abd813462360f49f853fa988764596c (patch) | |
tree | 12ac0b3d2de79dbc53de874b209ef83bf5c31a21 /sd | |
parent | 5cc45f148dac2080d5cdc2d69db539d55b1ff816 (diff) |
move ErrCode to comphelper and improve debug output string
need to move it, because modules "below" vcl want
to use the debug output method
Change-Id: Ibcaf4089a1e0b3fcc0b5189c7ebf1aae90f50b48
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139791
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/IwyuFilter_sd.yaml | 2 | ||||
-rw-r--r-- | sd/inc/errhdl.hrc | 2 | ||||
-rw-r--r-- | sd/inc/pch/precompiled_sd.hxx | 2 | ||||
-rw-r--r-- | sd/inc/pch/precompiled_sdui.hxx | 2 | ||||
-rw-r--r-- | sd/inc/sderror.hxx | 2 | ||||
-rw-r--r-- | sd/source/ui/inc/filedlg.hxx | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/sd/IwyuFilter_sd.yaml b/sd/IwyuFilter_sd.yaml index 3a1aed9d21d3..530cac5249d8 100644 --- a/sd/IwyuFilter_sd.yaml +++ b/sd/IwyuFilter_sd.yaml @@ -35,7 +35,7 @@ excludelist: - svx/svdobj.hxx sd/inc/sderror.hxx: # needed for defines - - vcl/errcode.hxx + - comphelper/errcode.hxx sd/inc/sdfilter.hxx: # base class has to be a complete type - com/sun/star/frame/XModel.hpp diff --git a/sd/inc/errhdl.hrc b/sd/inc/errhdl.hrc index ea7d4e7127d7..f6a10e9d909c 100644 --- a/sd/inc/errhdl.hrc +++ b/sd/inc/errhdl.hrc @@ -22,7 +22,7 @@ #define NC_(Context, String) TranslateId(Context, reinterpret_cast<char const *>(u8##String)) #include <svtools/ehdl.hxx> -#include <vcl/errcode.hxx> +#include <comphelper/errcode.hxx> #include "sderror.hxx" const ErrMsgCode RID_SD_ERRHDL[] = diff --git a/sd/inc/pch/precompiled_sd.hxx b/sd/inc/pch/precompiled_sd.hxx index 0354569c7a40..8963b9432162 100644 --- a/sd/inc/pch/precompiled_sd.hxx +++ b/sd/inc/pch/precompiled_sd.hxx @@ -83,7 +83,7 @@ #include <vcl/commandinfoprovider.hxx> #include <vcl/customweld.hxx> #include <vcl/dllapi.h> -#include <vcl/errcode.hxx> +#include <comphelper/errcode.hxx> #include <vcl/errinf.hxx> #include <vcl/event.hxx> #include <vcl/fntstyle.hxx> diff --git a/sd/inc/pch/precompiled_sdui.hxx b/sd/inc/pch/precompiled_sdui.hxx index 3cdcc98ee6b8..67f322dca750 100644 --- a/sd/inc/pch/precompiled_sdui.hxx +++ b/sd/inc/pch/precompiled_sdui.hxx @@ -121,7 +121,7 @@ #include <vcl/devicecoordinate.hxx> #include <vcl/dllapi.h> #include <vcl/dockwin.hxx> -#include <vcl/errcode.hxx> +#include <comphelper/errcode.hxx> #include <vcl/event.hxx> #include <vcl/fntstyle.hxx> #include <vcl/font.hxx> diff --git a/sd/inc/sderror.hxx b/sd/inc/sderror.hxx index 07ee1d7fa801..850d10fbec2a 100644 --- a/sd/inc/sderror.hxx +++ b/sd/inc/sderror.hxx @@ -19,7 +19,7 @@ #pragma once -#include <vcl/errcode.hxx> +#include <comphelper/errcode.hxx> // Import errors #define ERR_FORMAT_ROWCOL ErrCode(ErrCodeArea::Sd, ErrCodeClass::Read, 1) diff --git a/sd/source/ui/inc/filedlg.hxx b/sd/source/ui/inc/filedlg.hxx index 6a22d6ba52b7..c2c373a5501b 100644 --- a/sd/source/ui/inc/filedlg.hxx +++ b/sd/source/ui/inc/filedlg.hxx @@ -19,7 +19,7 @@ #pragma once -#include <vcl/errcode.hxx> +#include <comphelper/errcode.hxx> #include <vcl/weld.hxx> #include <memory> |