diff options
author | Miklos Vajna <vmiklos@suse.cz> | 2012-02-15 15:47:20 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2012-02-15 15:48:18 +0100 |
commit | 9efe123eec58bcf14faa7e18c2625bdd0c420fb7 (patch) | |
tree | c01711629adc0a9bc292859e42765a12351581be | |
parent | 9ab0b38e95133dab720408cc2c80093b8a201c10 (diff) |
sw: SvxRTFItemStack has been changed to std::deque in the meantime
-rw-r--r-- | sw/source/filter/rtf/rtffly.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/rtf/rtffly.cxx b/sw/source/filter/rtf/rtffly.cxx index 6d40010c39c9..b4c6573f5cea 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 { |