summaryrefslogtreecommitdiff
path: root/include/test
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-04-30 10:47:56 +0200
committerNoel Grandin <noel@peralex.com>2015-05-05 09:30:39 +0200
commitf304a7a14a4af4d3f46eab18d5494194028e61ef (patch)
tree7f51b8efe4427d01fc688925c44e0a05e3c64c7b /include/test
parentb2b85c2b3920fdd92b8d3bf32af1cac5679e116e (diff)
loplugin:staticmethods
Change-Id: I384a5e60f4b7b2f479c89ef97630519059ab720f
Diffstat (limited to 'include/test')
-rw-r--r--include/test/htmltesttools.hxx2
-rw-r--r--include/test/xmltesttools.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/test/htmltesttools.hxx b/include/test/htmltesttools.hxx
index 8889a6eaeddf..767febad04b2 100644
--- a/include/test/htmltesttools.hxx
+++ b/include/test/htmltesttools.hxx
@@ -22,7 +22,7 @@ class OOO_DLLPUBLIC_TEST HtmlTestTools
{
protected:
htmlDocPtr parseHtml(utl::TempFile& aTempFile);
- htmlDocPtr parseHtmlStream(SvStream* pStream);
+ static htmlDocPtr parseHtmlStream(SvStream* pStream);
};
#endif
diff --git a/include/test/xmltesttools.hxx b/include/test/xmltesttools.hxx
index a3ac5d6ce5db..a4cf8cc1a6f8 100644
--- a/include/test/xmltesttools.hxx
+++ b/include/test/xmltesttools.hxx
@@ -35,7 +35,7 @@ protected:
XmlTestTools();
virtual ~XmlTestTools();
- xmlDocPtr parseXml(utl::TempFile& aTempFile);
+ static xmlDocPtr parseXml(utl::TempFile& aTempFile);
virtual void registerNamespaces(xmlXPathContextPtr& pXmlXpathCtx);