diff options
author | Herbert Dürr <hdu@apache.org> | 2013-11-26 13:16:13 +0000 |
---|---|---|
committer | Herbert Dürr <hdu@apache.org> | 2013-11-26 13:16:13 +0000 |
commit | f809591727a01b24d6665e4dc378d6a59ea4b020 (patch) | |
tree | 7574ae3dd6afdfa393ceb0ad3bb2d2d7a67f7c7c /unotools/source | |
parent | ffb3bedc183791815eca699ef247f7109b9ffc21 (diff) |
#i123755# remove the stlport4-emulation of hash-container's resize() method
and call the rehash() methods of their TR1 counterparts directly
Notes
Notes:
ignore: obsolete
Diffstat (limited to 'unotools/source')
-rw-r--r-- | unotools/source/config/cmdoptions.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unotools/source/config/cmdoptions.cxx b/unotools/source/config/cmdoptions.cxx index 2654c056e86d..fa20f5990d0b 100644 --- a/unotools/source/config/cmdoptions.cxx +++ b/unotools/source/config/cmdoptions.cxx @@ -102,7 +102,7 @@ class SvtCmdOptions void SetContainerSize( sal_Int32 nSize ) { - m_aCommandHashMap.resize( nSize ); + m_aCommandHashMap.rehash( nSize ); } sal_Bool Lookup( const OUString& aCmd ) const |