summaryrefslogtreecommitdiff
path: root/sdext/source/pdfimport/wrapper/wrapper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/pdfimport/wrapper/wrapper.cxx')
-rwxr-xr-xsdext/source/pdfimport/wrapper/wrapper.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/sdext/source/pdfimport/wrapper/wrapper.cxx b/sdext/source/pdfimport/wrapper/wrapper.cxx
index 9d99097d0e22..6ec897891677 100755
--- a/sdext/source/pdfimport/wrapper/wrapper.cxx
+++ b/sdext/source/pdfimport/wrapper/wrapper.cxx
@@ -160,7 +160,6 @@ class Parser
void readInt32( sal_Int32& o_Value );
sal_Int32 readInt32();
void readInt64( sal_Int64& o_Value );
- sal_Int64 readInt64();
void readDouble( double& o_Value );
double readDouble();
void readBinaryData( uno::Sequence<sal_Int8>& rBuf );
@@ -220,11 +219,6 @@ void Parser::readInt64( sal_Int64& o_Value )
o_Value = readNextToken().toInt64();
}
-sal_Int64 Parser::readInt64()
-{
- return readNextToken().toInt64();
-}
-
void Parser::readDouble( double& o_Value )
{
o_Value = readNextToken().toDouble();