[Libreoffice-commits] core.git: starmath/source
Takeshi Abe
tabe at fixedpoint.jp
Tue Feb 20 12:26:52 UTC 2018
starmath/source/cfgitem.hxx | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
New commits:
commit 32a5ea9d0b96d9956be41fb7f1480139be619aae
Author: Takeshi Abe <tabe at fixedpoint.jp>
Date: Mon Feb 19 17:05:31 2018 +0900
starmath: no need to use std::deque here
Change-Id: I735d751bc9a5c3392075b6155d63e10b0da0d33b
Reviewed-on: https://gerrit.libreoffice.org/49968
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
Tested-by: Takeshi Abe <tabe at fixedpoint.jp>
diff --git a/starmath/source/cfgitem.hxx b/starmath/source/cfgitem.hxx
index fc12cfacc18b..2959f3741f3c 100644
--- a/starmath/source/cfgitem.hxx
+++ b/starmath/source/cfgitem.hxx
@@ -22,7 +22,6 @@
#include <utility.hxx>
-#include <deque>
#include <vector>
#include <com/sun/star/uno/Sequence.hxx>
@@ -67,7 +66,7 @@ struct SmFntFmtListEntry
class SmFontFormatList
{
- std::deque<SmFntFmtListEntry> aEntries;
+ std::vector<SmFntFmtListEntry> aEntries;
bool bModified;
SmFontFormatList(const SmFontFormatList&) = delete;
More information about the Libreoffice-commits
mailing list