summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-02-27 12:55:17 +0200
committerTor Lillqvist <tml@iki.fi>2013-02-27 13:50:24 +0200
commit3ec1d8af4259c29d780977ea6c3667df130a2ba1 (patch)
treef3817f311e2f1709e12116e71fc7646ddedfec1a /desktop
parent839675e7686fce1ba3c5dabab8159319c684af9b (diff)
WaE: unused function
Change-Id: Ia6785e0b7d3ac95d38bd59e677cdb415b15dbdb6
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/officeipcthread.cxx11
1 files changed, 10 insertions, 1 deletions
diff --git a/desktop/source/app/officeipcthread.cxx b/desktop/source/app/officeipcthread.cxx
index f4428e5e3de5..ebb961ec311c 100644
--- a/desktop/source/app/officeipcthread.cxx
+++ b/desktop/source/app/officeipcthread.cxx
@@ -57,8 +57,11 @@ const int OfficeIPCThread::sc_nShSeqLength = 5;
namespace {
-static char const SEND_ARGUMENTS[] = "InternalIPC::SendArguments";
static char const ARGUMENT_PREFIX[] = "InternalIPC::Arguments";
+
+#if !defined(ANDROID) && !defined(IOS)
+
+static char const SEND_ARGUMENTS[] = "InternalIPC::SendArguments";
static char const PROCESSING_DONE[] = "InternalIPC::ProcessingDone";
// Receives packets from the pipe until a packet ends in a NUL character (that
@@ -85,6 +88,8 @@ OString readStringFromPipe(osl::StreamPipe & pipe) {
}
}
+#endif
+
}
// Type of pipe we use
@@ -100,6 +105,8 @@ namespace desktop
namespace {
+#if !defined(ANDROID) && !defined(IOS)
+
class Parser: public CommandLineArgs::Supplier {
public:
explicit Parser(rtl::OString const & input): m_input(input) {
@@ -235,6 +242,8 @@ bool addArgument(rtl::OStringBuffer &rArguments, char prefix,
return true;
}
+#endif
+
}
rtl::Reference< OfficeIPCThread > OfficeIPCThread::pGlobalOfficeIPCThread;