[Libreoffice] [PUSHED][PATCH 3/4] Replace _SvxForbiddenCharacterTable_Impl with std::map
Caolán McNamara
caolanm at redhat.com
Mon Dec 12 08:47:43 PST 2011
On Sat, 2011-12-10 at 19:24 +0100, Marcel Metz wrote:
> ---
> cui/source/options/optasian.cxx | 73
> +++++++++++++++++++--------------------
> 1 files changed, 36 insertions(+), 37 deletions(-)
>
Looks reasonable, pushed now, thanks for this.
C.
p.s.
I made one mod of
DBG_ASSERT(pImp, "language not available");
+ DBG_ASSERT( ( it == aChangedLanguagesMap.end() ), "language not
available");
to
DBG_ASSERT(pImp, "language not available");
+ DBG_ASSERT( ( it != aChangedLanguagesMap.end() ), "language not
available");
More information about the LibreOffice
mailing list