summaryrefslogtreecommitdiffstats
path: root/include/svtools/toolboxcontroller.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-24 12:47:49 +0200
committerNoel Grandin <noel@peralex.com>2014-03-25 14:32:55 +0200
commitc849d750eb751d3f2b99d23cca1c8c08672ff379 (patch)
treec678a622bc155c9847e9164db23f8137b31a0cbf /include/svtools/toolboxcontroller.hxx
parentsvtools: sal_Bool->bool (diff)
downloadcore-c849d750eb751d3f2b99d23cca1c8c08672ff379.tar.gz
core-c849d750eb751d3f2b99d23cca1c8c08672ff379.zip
svtools: sal_Bool->bool
Change-Id: I05dd992f332ab2f3dbcc65aed6dac909872168d4
Diffstat (limited to 'include/svtools/toolboxcontroller.hxx')
-rw-r--r--include/svtools/toolboxcontroller.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svtools/toolboxcontroller.hxx b/include/svtools/toolboxcontroller.hxx
index 445cd4169b39..06127e027312 100644
--- a/include/svtools/toolboxcontroller.hxx
+++ b/include/svtools/toolboxcontroller.hxx
@@ -59,7 +59,7 @@ class SVT_DLLPUBLIC ToolboxController :
public ::comphelper::OPropertyArrayUsageHelper< ToolboxController >
{
private:
- sal_Bool m_bSupportVisible;
+ bool m_bSupportVisible;
public:
ToolboxController( const com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >& rxContext,
const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& xFrame,
@@ -124,7 +124,7 @@ class SVT_DLLPUBLIC ToolboxController :
protected:
bool getToolboxId( sal_uInt16& rItemId, ToolBox** ppToolBox );
- void setSupportVisibleProperty(sal_Bool bValue);
+ void setSupportVisibleProperty(bool bValue);
struct Listener
{
Listener( const ::com::sun::star::util::URL& rURL, const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch >& rDispatch ) :
@@ -161,13 +161,13 @@ class SVT_DLLPUBLIC ToolboxController :
void removeStatusListener( const OUString& aCommandURL );
void bindListener();
void unbindListener();
- sal_Bool isBound() const;
+ bool isBound() const;
// TODO remove
::com::sun::star::uno::Reference< ::com::sun::star::util::XURLTransformer > getURLTransformer() const;
// TODO remove
::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow > getParent() const;
- sal_Bool m_bInitialized : 1,
+ bool m_bInitialized : 1,
m_bDisposed : 1;
sal_uInt16 m_nToolBoxId;
::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame > m_xFrame;