summaryrefslogtreecommitdiff
path: root/framework/inc/dispatch
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-04-06 19:36:08 +0300
committerTor Lillqvist <tml@collabora.com>2014-04-06 19:37:48 +0300
commitee3945bd98194010656fa9b3366e7471b9f160fd (patch)
tree105c8722e412ae47582aeeb506d6ef135ab7a974 /framework/inc/dispatch
parent951ed199f1a47c02dad3dc899b9804b4574a151d (diff)
Kill superfluous spacing before semicolons
Change-Id: I53689e78221f3fe074e47d6b47f1a2c3fef96222
Diffstat (limited to 'framework/inc/dispatch')
-rw-r--r--framework/inc/dispatch/dispatchprovider.hxx2
-rw-r--r--framework/inc/dispatch/menudispatcher.hxx10
-rw-r--r--framework/inc/dispatch/oxt_handler.hxx6
-rw-r--r--framework/inc/dispatch/popupmenudispatcher.hxx12
4 files changed, 15 insertions, 15 deletions
diff --git a/framework/inc/dispatch/dispatchprovider.hxx b/framework/inc/dispatch/dispatchprovider.hxx
index a0e28ffe6e33..9aa714344415 100644
--- a/framework/inc/dispatch/dispatchprovider.hxx
+++ b/framework/inc/dispatch/dispatchprovider.hxx
@@ -85,7 +85,7 @@ class DispatchProvider : private TransactionBase ,
/// weakreference to owner frame (Don't use a hard reference. Owner can't delete us then!)
css::uno::WeakReference< css::frame::XFrame > m_xFrame;
/// different dispatcher to handle special dispatch calls, protocols or URLs (they will be created on demand.)
- css::uno::Reference< css::frame::XDispatch > m_xMenuDispatcher ;
+ css::uno::Reference< css::frame::XDispatch > m_xMenuDispatcher;
/// cache of some other dispatch provider which are registered inside configuration to handle special URL protocols
HandlerCache m_aProtocolHandlerCache;
diff --git a/framework/inc/dispatch/menudispatcher.hxx b/framework/inc/dispatch/menudispatcher.hxx
index 5460f5f63cc1..be4102791c40 100644
--- a/framework/inc/dispatch/menudispatcher.hxx
+++ b/framework/inc/dispatch/menudispatcher.hxx
@@ -225,13 +225,13 @@ class MenuDispatcher : public ::cppu::WeakImplHelper2<
private:
- css::uno::WeakReference< css::frame::XFrame > m_xOwnerWeak ; /// css::uno::WeakReference to owner (Don't use a hard css::uno::Reference. Owner can't delete us then!)
- css::uno::Reference< css::uno::XComponentContext > m_xContext ; /// factory shared with our owner to create new services!
+ css::uno::WeakReference< css::frame::XFrame > m_xOwnerWeak; /// css::uno::WeakReference to owner (Don't use a hard css::uno::Reference. Owner can't delete us then!)
+ css::uno::Reference< css::uno::XComponentContext > m_xContext; /// factory shared with our owner to create new services!
osl::Mutex m_mutex;
IMPL_ListenerHashContainer m_aListenerContainer; /// hash table for listener at specified URLs
- sal_Bool m_bAlreadyDisposed ; /// Protection against multiple disposing calls.
- sal_Bool m_bActivateListener ; /// dispatcher is listener for frame activation
- MenuManager* m_pMenuManager ; /// menu manager controlling menu dispatches
+ sal_Bool m_bAlreadyDisposed; /// Protection against multiple disposing calls.
+ sal_Bool m_bActivateListener; /// dispatcher is listener for frame activation
+ MenuManager* m_pMenuManager; /// menu manager controlling menu dispatches
}; // class MenuDispatcher
diff --git a/framework/inc/dispatch/oxt_handler.hxx b/framework/inc/dispatch/oxt_handler.hxx
index 505097c91446..b8d6d2eb4a56 100644
--- a/framework/inc/dispatch/oxt_handler.hxx
+++ b/framework/inc/dispatch/oxt_handler.hxx
@@ -103,9 +103,9 @@ class Oxt_Handler : public ::cppu::WeakImplHelper3<
private:
osl::Mutex m_mutex;
- css::uno::Reference< css::lang::XMultiServiceFactory > m_xFactory ; /// global uno service factory to create new services
- css::uno::Reference< css::uno::XInterface > m_xSelfHold ; /// we must protect us against dieing during async(!) dispatch() call!
- css::uno::Reference< css::frame::XDispatchResultListener > m_xListener ;
+ css::uno::Reference< css::lang::XMultiServiceFactory > m_xFactory; /// global uno service factory to create new services
+ css::uno::Reference< css::uno::XInterface > m_xSelfHold; /// we must protect us against dieing during async(!) dispatch() call!
+ css::uno::Reference< css::frame::XDispatchResultListener > m_xListener;
}; // class Oxt_Handler
diff --git a/framework/inc/dispatch/popupmenudispatcher.hxx b/framework/inc/dispatch/popupmenudispatcher.hxx
index 71d2d45ab9e4..518ed3df3930 100644
--- a/framework/inc/dispatch/popupmenudispatcher.hxx
+++ b/framework/inc/dispatch/popupmenudispatcher.hxx
@@ -130,14 +130,14 @@ class PopupMenuDispatcher : public ::cppu::WeakImplHelper5<
// variables
private:
- css::uno::WeakReference< css::frame::XFrame > m_xWeakFrame ; /// css::uno::WeakReference to frame (Don't use a hard css::uno::Reference. Owner can't delete us then!)
- css::uno::Reference< css::container::XNameAccess > m_xPopupCtrlQuery ; /// reference to query for popup controller
- css::uno::Reference< css::uri::XUriReferenceFactory > m_xUriRefFactory ; /// reference to the uri reference factory
- css::uno::Reference< css::uno::XComponentContext > m_xContext ; /// factory shared with our owner to create new services!
+ css::uno::WeakReference< css::frame::XFrame > m_xWeakFrame; /// css::uno::WeakReference to frame (Don't use a hard css::uno::Reference. Owner can't delete us then!)
+ css::uno::Reference< css::container::XNameAccess > m_xPopupCtrlQuery; /// reference to query for popup controller
+ css::uno::Reference< css::uri::XUriReferenceFactory > m_xUriRefFactory; /// reference to the uri reference factory
+ css::uno::Reference< css::uno::XComponentContext > m_xContext; /// factory shared with our owner to create new services!
osl::Mutex m_mutex;
IMPL_ListenerHashContainer m_aListenerContainer; /// hash table for listener at specified URLs
- sal_Bool m_bAlreadyDisposed ; /// Protection against multiple disposing calls.
- sal_Bool m_bActivateListener ; /// dispatcher is listener for frame activation
+ sal_Bool m_bAlreadyDisposed; /// Protection against multiple disposing calls.
+ sal_Bool m_bActivateListener; /// dispatcher is listener for frame activation
}; // class PopupMenuDispatcher