diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-06-28 16:40:29 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-06-28 16:40:29 +0200 |
commit | af41cbde659fec031706348c23c5672316ca026c (patch) | |
tree | e1ea265f1d9b1eabfa158560611732c5b5771b7b /include/xmloff | |
parent | 2cfb215de60eaa253766237c711f4f714dedb3c7 (diff) |
no need for XMLStringVector
Change-Id: I9e83c797da7e8a30d08db0ca0279a73d3f335477
Diffstat (limited to 'include/xmloff')
-rw-r--r-- | include/xmloff/XMLStringVector.hxx | 32 | ||||
-rw-r--r-- | include/xmloff/txtparae.hxx | 3 | ||||
-rw-r--r-- | include/xmloff/xmlnume.hxx | 1 |
3 files changed, 1 insertions, 35 deletions
diff --git a/include/xmloff/XMLStringVector.hxx b/include/xmloff/XMLStringVector.hxx deleted file mode 100644 index 863ec7aa4d3e..000000000000 --- a/include/xmloff/XMLStringVector.hxx +++ /dev/null @@ -1,32 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#ifndef _XMLOFF_XMLSTRINGVECTOR_HXX -#define _XMLOFF_XMLSTRINGVECTOR_HXX - -#include <rtl/ustring.hxx> - -#include <vector> - -typedef ::std::vector < OUString> XMLStringVector; - - -#endif // _XMLOFF_XMLSTRINGVECTOR_HXX - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/include/xmloff/txtparae.hxx b/include/xmloff/txtparae.hxx index e37a6de39248..df7ce2864c07 100644 --- a/include/xmloff/txtparae.hxx +++ b/include/xmloff/txtparae.hxx @@ -31,7 +31,6 @@ #include <xmloff/styleexp.hxx> #include <xmloff/xmltoken.hxx> #include <xmloff/SinglePropertySetInfoCache.hxx> -#include <xmloff/XMLStringVector.hxx> #include <vector> #include <boost/scoped_ptr.hpp> @@ -87,7 +86,7 @@ class XMLOFF_DLLPUBLIC XMLTextParagraphExport : public XMLStyleExport /// may be NULL (if no redlines should be exported; e.g. in block mode) XMLRedlineExport *pRedlineExport; - XMLStringVector *pHeadingStyles; + std::vector<OUString> *pHeadingStyles; sal_Bool bProgress; diff --git a/include/xmloff/xmlnume.hxx b/include/xmloff/xmlnume.hxx index 78e7cbfdd191..256d2a20c0b2 100644 --- a/include/xmloff/xmlnume.hxx +++ b/include/xmloff/xmlnume.hxx @@ -22,7 +22,6 @@ #include <rtl/ustring.hxx> #include <tools/mapunit.hxx> -#include <xmloff/XMLStringVector.hxx> #include <xmloff/attrlist.hxx> namespace com { namespace sun { namespace star { |