diff options
Diffstat (limited to 'uui/source/iahndl.cxx')
-rw-r--r-- | uui/source/iahndl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uui/source/iahndl.cxx b/uui/source/iahndl.cxx index 2897a582c3e9..2c6465c9e0ff 100644 --- a/uui/source/iahndl.cxx +++ b/uui/source/iahndl.cxx @@ -1246,7 +1246,7 @@ UUIInteractionHelper::handleBrokenPackageRequest( // ErrorResource Implementation bool ErrorResource::getString(ErrCode nErrorCode, OUString &rString) const { - for (const std::pair<const char*, ErrCode>* pStringArray = m_pStringArray; pStringArray->first != nullptr; ++pStringArray) + for (const std::pair<TranslateId, ErrCode>* pStringArray = m_pStringArray; pStringArray->first; ++pStringArray) { if (nErrorCode.StripWarningAndDynamic() == pStringArray->second.StripWarningAndDynamic()) { |