[Libreoffice-commits] .: svl/source

Caolán McNamara caolan at kemper.freedesktop.org
Tue Feb 22 00:56:35 PST 2011


 svl/source/svdde/ddesvr.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 44dc57f6a6503d1b8161823057973e8150c74482
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Tue Feb 22 08:56:28 2011 +0000

    fix build error

diff --git a/svl/source/svdde/ddesvr.cxx b/svl/source/svdde/ddesvr.cxx
index 22a4d71..2b92c21 100644
--- a/svl/source/svdde/ddesvr.cxx
+++ b/svl/source/svdde/ddesvr.cxx
@@ -604,7 +604,7 @@ void DdeService::AddFormat( ULONG nFmt )
     for ( size_t i = 0, n = aFormats.size(); i < n; ++i )
         if ( aFormats[ i ] == nFmt )
             return;
-    aFormats->push_back( nFmt );
+    aFormats.push_back( nFmt );
 }
 
 // --- DdeService::RemoveFormat() ----------------------------------


More information about the Libreoffice-commits mailing list