[Libreoffice-commits] .: svtools/bmpmaker
Fridrich Strba
fridrich at kemper.freedesktop.org
Tue Feb 8 00:00:02 PST 2011
svtools/bmpmaker/bmpcore.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit f2dd092d577fc60fbfd5eaf90e47924dda13bd8a
Author: Fridrich Å trba <fridrich.strba at bluewin.ch>
Date: Mon Feb 7 13:48:44 2011 +0100
std::bit_vector -> ::std::vector<bool, std::allocator<bool> >
diff --git a/svtools/bmpmaker/bmpcore.cxx b/svtools/bmpmaker/bmpcore.cxx
index 0e4d6e6..4b0a334 100644
--- a/svtools/bmpmaker/bmpcore.cxx
+++ b/svtools/bmpmaker/bmpcore.cxx
@@ -162,7 +162,7 @@ void BmpCreator::ImplCreate( const ::std::vector< DirEntry >& rInDirs,
Message( aInfo );
// create bit vector to hold flags for valid bitmaps
- ::std::bit_vector aValidBmpBitVector( aNameVector.size(), false );
+ ::std::vector<bool, std::allocator<bool> > aValidBmpBitVector( aNameVector.size(), false );
BitmapEx aBmpEx;
for( sal_uInt32 n = 0; n < aNameVector.size(); n++ )
More information about the Libreoffice-commits
mailing list