diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-07-25 15:43:58 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2013-07-25 14:20:01 +0000 |
commit | 32afec7662fed6eea0714a8bf23e9f040672cb5a (patch) | |
tree | 437d7ad75ddfc24b18f03e8185a7d2b9ed2f2164 /writerperfect | |
parent | d49366dffaebbe98165a2dbd816107b97bbb0cb8 (diff) |
Use inconditionally the libwpd >= 0.9.5 path
Since libwpd does not output the version number anymore
Change-Id: I1bc3f7081552795fc2ed33f033a093fa5b40fda8
(cherry picked from commit 93d0e38ccc06060f20073a9461c53f471a1b9c03)
Reviewed-on: https://gerrit.libreoffice.org/5102
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'writerperfect')
-rw-r--r-- | writerperfect/source/common/WPXSvStream.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/writerperfect/source/common/WPXSvStream.cxx b/writerperfect/source/common/WPXSvStream.cxx index a79ac6ce504c..e0c8d8c19a85 100644 --- a/writerperfect/source/common/WPXSvStream.cxx +++ b/writerperfect/source/common/WPXSvStream.cxx @@ -134,12 +134,8 @@ int WPXSvInputStreamImpl::seek(long offset, WPX_SEEK_TYPE seekType) sal_Int64 tmpOffset = offset; if (seekType == WPX_SEEK_CUR) tmpOffset += tmpPosition; -#if defined(LIBWPD_STREAM_VERSION_MAJOR) && defined(LIBWPD_STREAM_VERSION_MINOR) && defined(LIBWPD_STREAM_VERSION_REVISION) \ - && (LIBWPD_STREAM_VERSION_MAJOR > 0 || (LIBWPD_STREAM_VERSION_MAJOR == 0 && (LIBWPD_STREAM_VERSION_MINOR > 9 \ - || (LIBWPD_STREAM_VERSION_MINOR == 9 && LIBWPD_STREAM_VERSION_REVISION >= 5)))) if (seekType == WPX_SEEK_END) tmpOffset += mnLength; -#endif int retVal = 0; if (tmpOffset < 0) |