summaryrefslogtreecommitdiff
path: root/framework/inc/dispatch
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-04 15:53:21 +0200
committerNoel Grandin <noel@peralex.com>2014-04-07 13:53:49 +0200
commita6287e21f1dab6ae382c24ceeb4c0212b7cad2d7 (patch)
treef0bb68a88c56647fc9165ec69cc05cd5bc441ea6 /framework/inc/dispatch
parentc2e98d3cc9e2642d746a9933fcd91230a7378aa1 (diff)
framework: sal_Bool->bool
Change-Id: Ia6e87e2b382bd4005637e14088bde9e809996a25
Diffstat (limited to 'framework/inc/dispatch')
-rw-r--r--framework/inc/dispatch/closedispatcher.hxx14
-rw-r--r--framework/inc/dispatch/dispatchprovider.hxx2
-rw-r--r--framework/inc/dispatch/interceptionhelper.hxx2
-rw-r--r--framework/inc/dispatch/mailtodispatcher.hxx2
-rw-r--r--framework/inc/dispatch/menudispatcher.hxx6
-rw-r--r--framework/inc/dispatch/popupmenudispatcher.hxx4
-rw-r--r--framework/inc/dispatch/startmoduledispatcher.hxx4
7 files changed, 17 insertions, 17 deletions
diff --git a/framework/inc/dispatch/closedispatcher.hxx b/framework/inc/dispatch/closedispatcher.hxx
index 0ac4621f8da7..d338cc0e1644 100644
--- a/framework/inc/dispatch/closedispatcher.hxx
+++ b/framework/inc/dispatch/closedispatcher.hxx
@@ -185,10 +185,10 @@ class CloseDispatcher : public ::cppu::WeakImplHelper2<
@return [boolean]
sal_True if closing was successfully.
*/
- sal_Bool implts_prepareFrameForClosing(const css::uno::Reference< css::frame::XFrame >& xFrame ,
- sal_Bool bAllowSuspend ,
- sal_Bool bCloseAllOtherViewsToo,
- sal_Bool& bControllerSuspended );
+ bool implts_prepareFrameForClosing(const css::uno::Reference< css::frame::XFrame >& xFrame ,
+ bool bAllowSuspend ,
+ bool bCloseAllOtherViewsToo,
+ bool& bControllerSuspended );
/** @short close the member m_xCloseFrame.
@@ -204,7 +204,7 @@ class CloseDispatcher : public ::cppu::WeakImplHelper2<
@return [bool]
sal_True if closing was successfully.
*/
- sal_Bool implts_closeFrame();
+ bool implts_closeFrame();
/** @short set the special BackingComponent (now StartModule)
as new component of our m_xCloseFrame.
@@ -212,7 +212,7 @@ class CloseDispatcher : public ::cppu::WeakImplHelper2<
@return [bool]
sal_True if operation was successfully.
*/
- sal_Bool implts_establishBackingMode();
+ bool implts_establishBackingMode();
/** @short calls XDesktop->terminate().
@@ -225,7 +225,7 @@ class CloseDispatcher : public ::cppu::WeakImplHelper2<
@return [bool]
sal_True if termination of the application was started ...
*/
- sal_Bool implts_terminateApplication();
+ bool implts_terminateApplication();
/** @short notify a DispatchResultListener.
diff --git a/framework/inc/dispatch/dispatchprovider.hxx b/framework/inc/dispatch/dispatchprovider.hxx
index 8f15e13be11a..dadcfd3a3db2 100644
--- a/framework/inc/dispatch/dispatchprovider.hxx
+++ b/framework/inc/dispatch/dispatchprovider.hxx
@@ -110,7 +110,7 @@ class DispatchProvider : private TransactionBase ,
const css::uno::Reference< css::frame::XFrame >& xOwner ,
const OUString& sTarget = OUString() ,
sal_Int32 nSearchFlags = 0 );
- sal_Bool implts_isLoadableContent ( const css::util::URL& aURL );
+ bool implts_isLoadableContent ( const css::util::URL& aURL );
css::uno::Reference< css::frame::XDispatch > implts_queryDesktopDispatch ( const css::uno::Reference< css::frame::XFrame > xDesktop ,
const css::util::URL& aURL ,
const OUString& sTargetFrameName ,
diff --git a/framework/inc/dispatch/interceptionhelper.hxx b/framework/inc/dispatch/interceptionhelper.hxx
index 199c47e2de4b..af39e0284a28 100644
--- a/framework/inc/dispatch/interceptionhelper.hxx
+++ b/framework/inc/dispatch/interceptionhelper.hxx
@@ -145,7 +145,7 @@ class InterceptionHelper : public ::cppu::WeakImplHelper3<
/** @short it regulates, which interceptor is used first.
The last or the first registered one. */
- static sal_Bool m_bPreferrFirstInterceptor;
+ static bool m_bPreferrFirstInterceptor;
// native interface
diff --git a/framework/inc/dispatch/mailtodispatcher.hxx b/framework/inc/dispatch/mailtodispatcher.hxx
index 000011ae9ec7..5ab7a8b98721 100644
--- a/framework/inc/dispatch/mailtodispatcher.hxx
+++ b/framework/inc/dispatch/mailtodispatcher.hxx
@@ -92,7 +92,7 @@ class MailToDispatcher : public ::cppu::WeakImplHelper3<
/* internal */
private:
- sal_Bool implts_dispatch( const css::util::URL& aURL ,
+ bool implts_dispatch( const css::util::URL& aURL ,
const css::uno::Sequence< css::beans::PropertyValue >& lArguments ) throw( css::uno::RuntimeException );
}; // class MailToDispatcher
diff --git a/framework/inc/dispatch/menudispatcher.hxx b/framework/inc/dispatch/menudispatcher.hxx
index 48abdd4f8b52..4fa20001ac05 100644
--- a/framework/inc/dispatch/menudispatcher.hxx
+++ b/framework/inc/dispatch/menudispatcher.hxx
@@ -167,7 +167,7 @@ class MenuDispatcher : public ::cppu::WeakImplHelper2<
/*-****************************************************************************************************
*//*-*****************************************************************************************************/
- sal_Bool impl_setMenuBar( MenuBar* pMenuBar, sal_Bool bMenuFromResource = sal_False );
+ bool impl_setMenuBar( MenuBar* pMenuBar, bool bMenuFromResource = false );
/*-****************************************************************************************************
*//*-*****************************************************************************************************/
@@ -183,8 +183,8 @@ class MenuDispatcher : public ::cppu::WeakImplHelper2<
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
+ bool m_bAlreadyDisposed; /// Protection against multiple disposing calls.
+ 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/popupmenudispatcher.hxx b/framework/inc/dispatch/popupmenudispatcher.hxx
index 82b501588d14..7c2c4e74283b 100644
--- a/framework/inc/dispatch/popupmenudispatcher.hxx
+++ b/framework/inc/dispatch/popupmenudispatcher.hxx
@@ -136,8 +136,8 @@ class PopupMenuDispatcher : public ::cppu::WeakImplHelper5<
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
+ bool m_bAlreadyDisposed; /// Protection against multiple disposing calls.
+ bool m_bActivateListener; /// dispatcher is listener for frame activation
}; // class PopupMenuDispatcher
diff --git a/framework/inc/dispatch/startmoduledispatcher.hxx b/framework/inc/dispatch/startmoduledispatcher.hxx
index 5bbc3d0e01c7..beee6407b967 100644
--- a/framework/inc/dispatch/startmoduledispatcher.hxx
+++ b/framework/inc/dispatch/startmoduledispatcher.hxx
@@ -121,14 +121,14 @@ class StartModuleDispatcher : public ::cppu::WeakImplHelper2<
/** @short check if StartModule can be shown.
*/
- sal_Bool implts_isBackingModePossible();
+ bool implts_isBackingModePossible();
/** @short open the special BackingComponent (now StartModule)
@return [bool]
sal_True if operation was successfully.
*/
- sal_Bool implts_establishBackingMode();
+ bool implts_establishBackingMode();
/** @short notify a DispatchResultListener.