diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-02-13 12:45:51 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-02-13 12:45:51 +0100 |
commit | e40f9e6f08357ab744d2b5301db1886b3f0a7b70 (patch) | |
tree | f4f98b4a5605ad6b3c598a357f5840ae13010cee | |
parent | b093ccd77255806014f5f30571e712169d5456a4 (diff) |
-Werror,-Wdeprecated-declarations
Change-Id: I6b10ab0b3f11559f515084b45dc3771627223418
-rw-r--r-- | sd/source/core/stlpool.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/core/stlpool.cxx b/sd/source/core/stlpool.cxx index 3b89c2893a64..f173ce2893ad 100644 --- a/sd/source/core/stlpool.cxx +++ b/sd/source/core/stlpool.cxx @@ -667,7 +667,7 @@ void SdStyleSheetPool::CopySheets(SdStyleSheetPool& rSourcePool, SfxStyleFamily sal_Int32 nSuffix = 1; do { - aTmpName = aName + rRenameSuffix + OUString::valueOf(nSuffix); + aTmpName = aName + rRenameSuffix + OUString::number(nSuffix); pExistingSheet = Find(aTmpName, eFamily); nSuffix++; } while( pExistingSheet && pExistingSheet->GetItemSet().getHash() != nHash ); |