diff options
author | August Sodora <augsod@gmail.com> | 2012-01-11 10:47:56 -0500 |
---|---|---|
committer | August Sodora <augsod@gmail.com> | 2012-01-11 18:32:12 -0500 |
commit | a140141e272854110e2e164be69c35839631a0e0 (patch) | |
tree | 5274402c5a3a6162852a90d8a39fc6f2ad9c926b /svx/inc | |
parent | 2042da484765a029e0545a530e3d9a6f38218821 (diff) |
SvStringsDtor->std::vector
Diffstat (limited to 'svx/inc')
-rw-r--r-- | svx/inc/svx/numfmtsh.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/inc/svx/numfmtsh.hxx b/svx/inc/svx/numfmtsh.hxx index a2425a4745c4..3ae23f4f66ca 100644 --- a/svx/inc/svx/numfmtsh.hxx +++ b/svx/inc/svx/numfmtsh.hxx @@ -190,8 +190,8 @@ public: short GetListPos4Entry(sal_uInt32 nIdx); short GetListPos4Entry( const String& rFmtString ); - void GetCurrencySymbols( SvStringsDtor& rList, sal_uInt16* pPos ); - void GetCurrencySymbols( SvStringsDtor& rList, bool bFlag ); + void GetCurrencySymbols(std::vector<rtl::OUString>& rList, sal_uInt16* pPos ); + void GetCurrencySymbols(std::vector<rtl::OUString>& rList, bool bFlag ); sal_uInt16 FindCurrencyTableEntry( const String& rFmtString, bool &bTestBanking ); bool IsInTable(sal_uInt16 nPos,bool bTmpBanking,const String &rFmtString); |