summaryrefslogtreecommitdiff
path: root/desktop/source/app/dispatchwatcher.hxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-02-21 16:14:27 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-02-21 16:14:27 +0000
commit6b6a268d22f409f884a4f66ea8b3cc822d310751 (patch)
treec133da95225d016fcbcc342d2e61df9981ff97c0 /desktop/source/app/dispatchwatcher.hxx
parentd8a61416489e49efd3db0b1171378f208670603a (diff)
INTEGRATION: CWS fwkpostbeta02 (1.6.450); FILE MERGED
2005/02/15 08:54:25 mba 1.6.450.1: #i42804#: allow module specifiers on cmdline for opening files
Diffstat (limited to 'desktop/source/app/dispatchwatcher.hxx')
-rw-r--r--desktop/source/app/dispatchwatcher.hxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/desktop/source/app/dispatchwatcher.hxx b/desktop/source/app/dispatchwatcher.hxx
index 050c3450e444..0349a7e7cf39 100644
--- a/desktop/source/app/dispatchwatcher.hxx
+++ b/desktop/source/app/dispatchwatcher.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: dispatchwatcher.hxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: vg $ $Date: 2003-05-16 14:21:58 $
+ * last change: $Author: vg $ $Date: 2005-02-21 17:14:27 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -122,12 +122,13 @@ class DispatchWatcher : public ::cppu::WeakImplHelper1< ::com::sun::star::frame:
struct DispatchRequest
{
- DispatchRequest( RequestType aType, const ::rtl::OUString& aFile, const ::rtl::OUString aPrinter ) :
- aRequestType( aType ), aURL( aFile ), aPrinterName( aPrinter ) {}
+ DispatchRequest( RequestType aType, const ::rtl::OUString& aFile, const ::rtl::OUString& aPrinter, const ::rtl::OUString& aFact ) :
+ aRequestType( aType ), aURL( aFile ), aPrinterName( aPrinter ), aPreselectedFactory( aFact ) {}
RequestType aRequestType;
rtl::OUString aURL;
rtl::OUString aPrinterName;
+ rtl::OUString aPreselectedFactory;
};
typedef std::vector< DispatchRequest > DispatchList;