Kaydet (Commit) 874a9b46 authored tarafından Tomaž Vajngerl's avatar Tomaž Vajngerl Kaydeden (comit) Jan Holesovsky

liblo: Older versions do not have saveAsWithOptions yet.

Change-Id: I41b15e81f2e3c5c413b73382a1f55d79a4f7103a
üst 9a0ac1dd
...@@ -42,6 +42,10 @@ public: ...@@ -42,6 +42,10 @@ public:
inline bool saveAsWithOptions(const char* pUrl, const char* pFormat = NULL, const char* pFilterOptions = NULL) inline bool saveAsWithOptions(const char* pUrl, const char* pFormat = NULL, const char* pFilterOptions = NULL)
{ {
// available since LibreOffice 4.3
if (!mpDoc->saveAsWithOptions)
return false;
return mpDoc->saveAsWithOptions(mpDoc, pUrl, pFormat, pFilterOptions); return mpDoc->saveAsWithOptions(mpDoc, pUrl, pFormat, pFilterOptions);
} }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment