summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorWastack <btomi96@gmail.com>2016-03-31 08:42:46 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-01 06:45:36 +0000
commit20ba5d464a9fba3090af6a644a331ee237356fea (patch)
tree05f252c112fd423addd852cee1713060ea89abca /filter
parent9e596250a6e968c5d1e2fb0de582ae242e02acf9 (diff)
tdf#97966 Drop 'static' keywords
Including no keywords from extern "C" blocks Change-Id: I8bcd7e8a492ee4dbfa5141416c7c038a1391cf20 Reviewed-on: https://gerrit.libreoffice.org/23673 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/svg/svgreader.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/source/svg/svgreader.cxx b/filter/source/svg/svgreader.cxx
index 2deff7583718..8feb4bf5187e 100644
--- a/filter/source/svg/svgreader.cxx
+++ b/filter/source/svg/svgreader.cxx
@@ -1373,7 +1373,7 @@ struct AnnotatingVisitor
};
/// Annotate svg styles with unique references to state pool
-static void annotateStyles( StatePool& rStatePool,
+void annotateStyles( StatePool& rStatePool,
StateMap& rStateMap,
const State& rInitialState,
uno::Reference<xml::dom::XElement>& rElem,
@@ -1943,7 +1943,7 @@ struct ShapeWritingVisitor
};
/// Write out shapes from DOM tree
-static void writeShapes( StatePool& rStatePool,
+void writeShapes( StatePool& rStatePool,
StateMap& rStateMap,
const uno::Reference<xml::dom::XElement>& rElem,
const uno::Reference<xml::sax::XDocumentHandler>& xDocHdl,