summaryrefslogtreecommitdiffstats
path: root/sax/source
diff options
context:
space:
mode:
authorWastack <btomi96@gmail.com>2016-03-31 08:45:27 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-01 06:46:02 +0000
commiteea3f508c35f8f391825761ab6e1f3fbfb2fd0c1 (patch)
treed956fb94b7d9cf4b978eb1a9aca2910fca93d384 /sax/source
parenttdf#97966 Drop 'static' keywords (diff)
downloadcore-eea3f508c35f8f391825761ab6e1f3fbfb2fd0c1.tar.gz
core-eea3f508c35f8f391825761ab6e1f3fbfb2fd0c1.zip
tdf#97966 Drop 'static' keywords
Including no keywords from extern "C" blocks Change-Id: I87f2ed75888b51ec9e0cb75566bf7c2351b479b4 Reviewed-on: https://gerrit.libreoffice.org/23675 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sax/source')
-rw-r--r--sax/source/expatwrap/saxwriter.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sax/source/expatwrap/saxwriter.cxx b/sax/source/expatwrap/saxwriter.cxx
index db75efe44d33..a58a77af70d6 100644
--- a/sax/source/expatwrap/saxwriter.cxx
+++ b/sax/source/expatwrap/saxwriter.cxx
@@ -855,7 +855,7 @@ inline sal_Int32 calcXMLByteLength( const sal_Unicode *pStr, sal_Int32 nStrLen,
/** returns position of first ascii 10 within the string, -1 when no 10 in string.
*/
-static inline sal_Int32 getFirstLineBreak( const OUString & str ) throw ()
+inline sal_Int32 getFirstLineBreak( const OUString & str ) throw ()
{
const sal_Unicode *pSource = str.getStr();
sal_Int32 nLen = str.getLength();
@@ -991,7 +991,7 @@ sal_Int32 SAXWriter::getIndentPrefixLength( sal_Int32 nFirstLineBreakOccurrence
return nLength;
}
-static inline bool isFirstCharWhitespace( const sal_Unicode *p ) throw()
+inline bool isFirstCharWhitespace( const sal_Unicode *p ) throw()
{
return *p == ' ';
}