summaryrefslogtreecommitdiff
path: root/writerperfect/source
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2014-03-01 00:15:25 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2014-03-01 00:33:28 +0900
commit6e9b859fa1c6ba2f94b46ac272372e0a503075c4 (patch)
tree3894e35dc3dd452914d397a626550aee5bc6a91d /writerperfect/source
parent29c71853c469cbe7fc5f0439f6d6b5dedfe6a0fb (diff)
Drop useless const
Change-Id: Ifcdd921b08af10ff17dc3da7b811b6aed74baf98
Diffstat (limited to 'writerperfect/source')
-rw-r--r--writerperfect/source/common/DirectoryStream.cxx4
1 files changed, 2 insertions, 2 deletions
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;
}