From 6e9b859fa1c6ba2f94b46ac272372e0a503075c4 Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Sat, 1 Mar 2014 00:15:25 +0900 Subject: Drop useless const Change-Id: Ifcdd921b08af10ff17dc3da7b811b6aed74baf98 --- writerperfect/source/common/DirectoryStream.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'writerperfect') diff --git a/writerperfect/source/common/DirectoryStream.cxx b/writerperfect/source/common/DirectoryStream.cxx index 7251d7225b96..ff93e2669780 100644 --- a/writerperfect/source/common/DirectoryStream.cxx +++ b/writerperfect/source/common/DirectoryStream.cxx @@ -129,13 +129,13 @@ WPXInputStream *DirectoryStream::getDocumentOLEStream(const char *const pName) return input; } -const unsigned char *DirectoryStream::read(const unsigned long, unsigned long &nNumBytesRead) +const unsigned char *DirectoryStream::read(unsigned long, unsigned long &nNumBytesRead) { nNumBytesRead = 0; return 0; } -int DirectoryStream::seek(const long, const WPX_SEEK_TYPE) +int DirectoryStream::seek(long, WPX_SEEK_TYPE) { return -1; } -- cgit