[Libreoffice-commits] .: sw/source

Miklos Vajna vmiklos at kemper.freedesktop.org
Wed Feb 15 06:51:04 PST 2012


 sw/source/filter/rtf/rtffly.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9efe123eec58bcf14faa7e18c2625bdd0c420fb7
Author: Miklos Vajna <vmiklos at suse.cz>
Date:   Wed Feb 15 15:47:20 2012 +0100

    sw: SvxRTFItemStack has been changed to std::deque in the meantime

diff --git a/sw/source/filter/rtf/rtffly.cxx b/sw/source/filter/rtf/rtffly.cxx
index 6d40010..b4c6573 100644
--- a/sw/source/filter/rtf/rtffly.cxx
+++ b/sw/source/filter/rtf/rtffly.cxx
@@ -1093,7 +1093,7 @@ void SwRTFParser::ReadFly( int nToken, SfxItemSet* pSet )
         aFlyArr.DeleteAndDestroy( --nFlyArrCnt );
 
         // Remove the properties that have been parsed before in the paragraph
-        GetAttrStack().Pop();
+        GetAttrStack().pop_back();
     }
     else
     {


More information about the Libreoffice-commits mailing list