diff options
-rw-r--r-- | desktop/source/app/dispatchwatcher.hxx | 3 | ||||
-rw-r--r-- | desktop/source/app/officeipcthread.cxx | 6 |
2 files changed, 2 insertions, 7 deletions
diff --git a/desktop/source/app/dispatchwatcher.hxx b/desktop/source/app/dispatchwatcher.hxx index 087d338a1507..f78db4f1a141 100644 --- a/desktop/source/app/dispatchwatcher.hxx +++ b/desktop/source/app/dispatchwatcher.hxx @@ -58,9 +58,6 @@ class DispatchWatcher : public ::cppu::WeakImplHelper< css::frame::XDispatchResu struct DispatchRequest { - DispatchRequest( RequestType aType, const OUString& aFile, boost::optional< OUString > const & cwdUrl, const OUString& aPrinter, const OUString& aFact ) : - aRequestType( aType ), aURL( aFile ), aCwdUrl( cwdUrl ), aPrinterName( aPrinter ), aPreselectedFactory( aFact ) {} - RequestType aRequestType; OUString aURL; boost::optional< OUString > aCwdUrl; diff --git a/desktop/source/app/officeipcthread.cxx b/desktop/source/app/officeipcthread.cxx index 9260840fb3fc..ccc72ec06f1e 100644 --- a/desktop/source/app/officeipcthread.cxx +++ b/desktop/source/app/officeipcthread.cxx @@ -996,8 +996,7 @@ static void AddToDispatchList( for (std::vector< OUString >::const_iterator i(aRequestList.begin()); i != aRequestList.end(); ++i) { - rDispatchList.push_back( - DispatchWatcher::DispatchRequest( nType, *i, cwdUrl, aParam, aFactory )); + rDispatchList.push_back({nType, *i, cwdUrl, aParam, aFactory}); } } @@ -1046,8 +1045,7 @@ static void AddConversionsToDispatchList( for (std::vector< OUString >::const_iterator i(rRequestList.begin()); i != rRequestList.end(); ++i) { - rDispatchList.push_back( - DispatchWatcher::DispatchRequest( nType, *i, cwdUrl, aParam, rFactory )); + rDispatchList.push_back({nType, *i, cwdUrl, aParam, rFactory}); } } |