diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-06-09 12:01:43 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-06-09 12:01:43 +0000 |
commit | 83dd0b1152ef3fd29e186a0141e7310264a23b28 (patch) | |
tree | d9ed97ec3d0970c5d93c51439ce165263fafe165 /desktop/source/app/officeipcthread.hxx | |
parent | af4ec7be596a15a2d5664331d85629c22a0d1264 (diff) |
INTEGRATION: CWS sb87 (1.20.356); FILE MERGED
2008/04/24 13:22:02 sb 1.20.356.2: RESYNC: (1.20-1.21); FILE MERGED
2008/04/09 14:05:49 sb 1.20.356.1: #i87730# in an attempt of consolidation with the new OOO_CWD stuff for Windows, pass the working dir across the pipe between two soffice processes (instead of already making cmd line args absolute at sending side)
Diffstat (limited to 'desktop/source/app/officeipcthread.hxx')
-rw-r--r-- | desktop/source/app/officeipcthread.hxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/desktop/source/app/officeipcthread.hxx b/desktop/source/app/officeipcthread.hxx index 74c98f858f53..90e8f7062c6e 100644 --- a/desktop/source/app/officeipcthread.hxx +++ b/desktop/source/app/officeipcthread.hxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: officeipcthread.hxx,v $ - * $Revision: 1.22 $ + * $Revision: 1.23 $ * * This file is part of OpenOffice.org. * @@ -42,6 +42,7 @@ #include <cppuhelper/implbase2.hxx> #endif #include <osl/conditn.hxx> +#include "boost/optional.hpp" namespace desktop { @@ -55,6 +56,10 @@ class SalMainPipeExchangeSignalHandler : public vos::OSignalHandler // that was given by command line or by IPC pipe communication. struct ProcessDocumentsRequest { + ProcessDocumentsRequest(boost::optional< rtl::OUString > const & cwdUrl): + aCwdUrl(cwdUrl) {} + + boost::optional< ::rtl::OUString > aCwdUrl; ::rtl::OUString aModule; ::rtl::OUString aOpenList; // Documents that should be opened in the default way ::rtl::OUString aViewList; // Documents that should be opened in viewmode |