diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-02-14 11:23:22 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-02-14 11:23:22 +0000 |
commit | 8a3aef5c080eaadfcb88f1b86699466f9c5fdb50 (patch) | |
tree | 051ae6d57f84cbb0cd842eb56810e95de8a9dca8 | |
parent | ffeba3bfd1651e35c106196230852aac1cc91db7 (diff) |
adapt for move of natural sort
-rw-r--r-- | sfx2/source/dialog/templdlg.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sfx2/source/dialog/templdlg.cxx b/sfx2/source/dialog/templdlg.cxx index 538ca9364bb7..0c90572fa94e 100644 --- a/sfx2/source/dialog/templdlg.cxx +++ b/sfx2/source/dialog/templdlg.cxx @@ -76,6 +76,7 @@ #include <sfx2/viewfrm.hxx> #include <comphelper/configurationhelper.hxx> +#include <comphelper/string.hxx> using namespace ::com::sun::star; using namespace ::com::sun::star::beans; @@ -684,7 +685,7 @@ StyleTreeArr_Impl &MakeTree_Impl(StyleTreeArr_Impl &rArr) // initial sortiert einfuegen USHORT nPos; for( nPos = 0 ; nPos < pCmp->Count() && - (*pCmp->pChilds)[nPos]->aName.CompareToNumeric(pEntry->aName) < 0 ; nPos++); + comphelper::string::compareNatural((*pCmp->pChilds)[nPos]->aName, pEntry->aName) < 0 ; nPos++); pCmp->Put(pEntry,nPos); break; } @@ -1317,7 +1318,7 @@ void SfxCommonTemplateDialog_Impl::UpdateStyles_Impl(USHORT nFlags) //Bubblesort USHORT nPos; for( nPos = aStrings.Count() ; nPos && - aStrings[nPos-1]->CompareToNumeric(pStyle->GetName()) > 0 ; nPos--); + comphelper::string::compareNatural(*(aStrings[nPos-1]), pStyle->GetName()) > 0 ; nPos--); aStrings.Insert( new String( pStyle->GetName() ), nPos ); pStyle = pStyleSheetPool->Next(); } |