[Libreoffice-commits] .: cui/source

Fridrich Strba fridrich at kemper.freedesktop.org
Tue Feb 8 00:08:34 PST 2011


 cui/source/dialogs/cuigaldlg.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ef8229edf906243ab2dccc10f112cbc315dc113a
Author: Fridrich Å trba <fridrich.strba at bluewin.ch>
Date:   Mon Feb 7 13:48:42 2011 +0100

    std::bit_vector -> ::std::vector<bool, std::allocator<bool> >

diff --git a/cui/source/dialogs/cuigaldlg.cxx b/cui/source/dialogs/cuigaldlg.cxx
index 24cc295..22ec078 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;
 


More information about the Libreoffice-commits mailing list