diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-07 13:48:42 +0100 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-02-08 07:43:29 +0100 |
commit | d0f6d5d97c66a361928c1d709b49d55ddeec6452 (patch) | |
tree | fd71dbe370dd3dc0c4f93320b6094191420429da | |
parent | 18e39b8c4da749e0cad428e7f35931d02e9ecc9f (diff) |
std::bit_vector -> ::std::vector<bool, std::allocator<bool> >
-rw-r--r-- | cui/source/dialogs/cuigaldlg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/dialogs/cuigaldlg.cxx b/cui/source/dialogs/cuigaldlg.cxx index 43f0f5dc5845..544852a6b101 100644 --- a/cui/source/dialogs/cuigaldlg.cxx +++ b/cui/source/dialogs/cuigaldlg.cxx @@ -384,7 +384,7 @@ IMPL_LINK( TakeProgress, ClickCancelBtn, void*, EMPTYARG ) IMPL_LINK( TakeProgress, CleanUpHdl, void*, EMPTYARG ) { TPGalleryThemeProperties* mpBrowser = (TPGalleryThemeProperties*) GetParent(); - ::std::bit_vector aRemoveEntries( mpBrowser->aFoundList.Count(), false ); + ::std::vector<bool, std::allocator<bool> > aRemoveEntries( mpBrowser->aFoundList.Count(), false ); ::std::vector< String > aRemainingVector; sal_uInt32 i, nCount; |