summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/standardcontrol.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-05-08 11:41:58 +0200
committerNoel Grandin <noel@peralex.com>2014-05-08 11:44:53 +0200
commit9c117de4c1d291823d1588a99011ababab2112c8 (patch)
tree0ba30c45355d80632bce06dba5026a620a26de38 /extensions/source/propctrlr/standardcontrol.hxx
parent81bd29a61ef3ae052993877524357a4e1f3bc330 (diff)
extensions: sal_Bool->bool
Change-Id: Ia22387bf25891fb83982c03af3fa4fffdb0c3cab
Diffstat (limited to 'extensions/source/propctrlr/standardcontrol.hxx')
-rw-r--r--extensions/source/propctrlr/standardcontrol.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/source/propctrlr/standardcontrol.hxx b/extensions/source/propctrlr/standardcontrol.hxx
index 833240c8b39f..1cf13284a28f 100644
--- a/extensions/source/propctrlr/standardcontrol.hxx
+++ b/extensions/source/propctrlr/standardcontrol.hxx
@@ -130,10 +130,10 @@ namespace pcr
class OEditControl : public OEditControl_Base
{
protected:
- sal_Bool m_bIsPassword : 1;
+ bool m_bIsPassword : 1;
public:
- OEditControl( Window* _pParent, sal_Bool _bPassWord, WinBits nWinStyle );
+ OEditControl( Window* _pParent, bool _bPassWord, WinBits nWinStyle );
// XPropertyControl
virtual ::com::sun::star::uno::Any SAL_CALL getValue() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
@@ -378,7 +378,7 @@ namespace pcr
MultiLineEdit* m_pImplEdit;
PushButton* m_pDropdownButton;
MultiLineOperationMode m_nOperationMode;
- sal_Bool m_bDropdown : 1;
+ bool m_bDropdown : 1;
public:
DropDownEditControl( Window* _pParent, WinBits _nStyle );
@@ -409,7 +409,7 @@ namespace pcr
DECL_LINK( ReturnHdl, OMultilineFloatingEdit* );
DECL_LINK( DropDownHdl, PushButton* );
- sal_Bool ShowDropDown( sal_Bool bShow );
+ bool ShowDropDown( bool bShow );
};