Adapt to lok API CHANGE in core
Introduced in commit 5bcc79e825d542c40c9ee0f48d1d72ea9aa53c54. Change-Id: I1f2bf27f45f7e62f96fc5059e02386b1c884b3e6 Reviewed-on: https://gerrit.libreoffice.org/42713 Reviewed-by: Jan Holesovsky <kendy@collabora.com> Tested-by: Jan Holesovsky <kendy@collabora.com>
This commit is contained in:
parent
017f82a84d
commit
a71c13a718
1 changed files with 2 additions and 2 deletions
|
@ -180,7 +180,7 @@ static void lo_registerCallback (LibreOfficeKit* pThis,
|
|||
LibreOfficeKitCallback pCallback,
|
||||
void* pData);
|
||||
static char* lo_getFilterTypes(LibreOfficeKit* pThis);
|
||||
static void lo_setOptionalFeatures(LibreOfficeKit* pThis, uint64_t features);
|
||||
static void lo_setOptionalFeatures(LibreOfficeKit* pThis, unsigned long long features);
|
||||
static void lo_setDocumentPassword(LibreOfficeKit* pThis,
|
||||
const char* pURL,
|
||||
const char* pPassword);
|
||||
|
@ -534,7 +534,7 @@ static char* lo_getFilterTypes(LibreOfficeKit* pThis)
|
|||
return nullptr;
|
||||
}
|
||||
|
||||
static void lo_setOptionalFeatures(LibreOfficeKit* pThis, uint64_t const features)
|
||||
static void lo_setOptionalFeatures(LibreOfficeKit* pThis, unsigned long long const features)
|
||||
{
|
||||
(void) pThis;
|
||||
(void) features;
|
||||
|
|
Loading…
Reference in a new issue