From 669e90de20383e4d11f6bae973489f62e05649a9 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Tue, 22 Jan 2019 15:50:13 +0200 Subject: [PATCH] exportSignAndUploadDocument() is not used on MOBILEAPP (and does not compile for iOS at least) Change-Id: I23bdd461c8dffb407e6aee2a378c47dc38239618 --- kit/ChildSession.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/kit/ChildSession.cpp b/kit/ChildSession.cpp index 2b8534c01..583e83b72 100644 --- a/kit/ChildSession.cpp +++ b/kit/ChildSession.cpp @@ -1402,6 +1402,8 @@ bool ChildSession::signDocumentContent(const char* buffer, int length, const std return bResult; } +#ifndef MOBILEAPP + bool ChildSession::exportSignAndUploadDocument(const char* buffer, int length, const std::vector& /*tokens*/) { bool bResult = false; @@ -1567,6 +1569,8 @@ bool ChildSession::exportSignAndUploadDocument(const char* buffer, int length, c return true; } +#endif + bool ChildSession::askSignatureStatus(const char* buffer, int length, const std::vector& /*tokens*/) { std::unique_lock lock(_docManager.getDocumentMutex());