summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-04-22 13:53:12 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-04-25 06:02:27 +0000
commitd848960a3e77a8608a48f3ba394928c955f1e2d9 (patch)
tree72dc3e769cfe94d8f173185b5c4762ae14e98dbb /tools
parentf4b8b9ad1109b63afea6d8111a2e0799399a2fb2 (diff)
rename Errhdl_Impl to ErrorHandler_Impl
Change-Id: I2405c74487a869def2436f19917937f69ab32916 Reviewed-on: https://gerrit.libreoffice.org/24310 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/source/ref/errinf.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/source/ref/errinf.cxx b/tools/source/ref/errinf.cxx
index 97f0616d85bf..5d7af962575e 100644
--- a/tools/source/ref/errinf.cxx
+++ b/tools/source/ref/errinf.cxx
@@ -149,7 +149,7 @@ StringErrorInfo::StringErrorInfo(
{
}
-class ErrHdl_Impl
+class ErrorHandler_Impl
{
public:
ErrorHandler *pNext;
@@ -197,7 +197,7 @@ ErrorContext *ErrorContext::GetContext()
}
ErrorHandler::ErrorHandler()
- : pImpl(new ErrHdl_Impl)
+ : pImpl(new ErrorHandler_Impl)
{
EDcrData &pData=TheEDcrData::get();
ErrorHandler *&pHdl=pData.pFirstHdl;
@@ -289,7 +289,7 @@ sal_uInt16 ErrorHandler::HandleError_Impl(
nErrFlags = nDynFlags;
}
- if(ErrHdl_Impl::CreateString(pData.pFirstHdl,pInfo,aErr,nErrFlags))
+ if(ErrorHandler_Impl::CreateString(pData.pFirstHdl,pInfo,aErr,nErrFlags))
{
if (bJustCreateString)
{
@@ -354,7 +354,7 @@ sal_uInt16 ErrorHandler::HandleError(sal_uIntPtr lId, sal_uInt16 nFlags)
return HandleError_Impl( lId, nFlags, false, aDummy );
}
-bool ErrHdl_Impl::CreateString( const ErrorHandler *pStart,
+bool ErrorHandler_Impl::CreateString( const ErrorHandler *pStart,
const ErrorInfo* pInfo, OUString& pStr,
sal_uInt16 &rFlags)
{