diff options
author | Slávek Banko <[email protected]> | 2019-05-11 16:30:45 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-05-12 17:38:10 +0200 |
commit | ac9ac39fde0adb59f3c696a8c18cc9be96c59742 (patch) | |
tree | e1a03242e44e031509ba6b8dcd05d94f75e3e1ba /lib/libchmfile/libchmfileimpl.cpp | |
parent | 66815c9c1679da40b1454d1faf05b353004aab13 (diff) | |
download | kchmviewer-ac9ac39fde0adb59f3c696a8c18cc9be96c59742.tar.gz kchmviewer-ac9ac39fde0adb59f3c696a8c18cc9be96c59742.zip |
Fix FTBFS for build with builtin libchm.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit 2ac1800224d2870ae5129e8a09b3a190e77fa506)
Diffstat (limited to 'lib/libchmfile/libchmfileimpl.cpp')
-rw-r--r-- | lib/libchmfile/libchmfileimpl.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/libchmfile/libchmfileimpl.cpp b/lib/libchmfile/libchmfileimpl.cpp index 39268b0..a5ad04c 100644 --- a/lib/libchmfile/libchmfileimpl.cpp +++ b/lib/libchmfile/libchmfileimpl.cpp @@ -531,13 +531,8 @@ bool LCHMFileImpl::ResolveObject(const TQString& fileName, chmUnitInfo *ui) cons size_t LCHMFileImpl::RetrieveObject(const chmUnitInfo *ui, unsigned char *buffer, LONGUINT64 fileOffset, LONGINT64 bufferSize) const { -#if USE_BUILTIN_CHMLIB - return ::chm_retrieve_object(m_chmFile, ui, buffer, - fileOffset, bufferSize); -#else return ::chm_retrieve_object(m_chmFile, const_cast<chmUnitInfo*>(ui), buffer, fileOffset, bufferSize); -#endif } |