summaryrefslogtreecommitdiffstats
path: root/sw/source/ui/inc/condedit.hxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-01-26 20:14:11 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-01-26 20:18:49 +0900
commit1f531d4f68b41044bdb38f90149b4d81e3024da7 (patch)
tree7acd0ce9f7a0da57cd32606b94d3dd52c842a139 /sw/source/ui/inc/condedit.hxx
parentNuke unused #define (diff)
downloadcore-1f531d4f68b41044bdb38f90149b4d81e3024da7.tar.gz
core-1f531d4f68b41044bdb38f90149b4d81e3024da7.zip
sal_Bool to bool
Change-Id: Ie452042fafd4d795b9830f9d8416c568a76b3d8f
Diffstat (limited to 'sw/source/ui/inc/condedit.hxx')
-rw-r--r--sw/source/ui/inc/condedit.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/ui/inc/condedit.hxx b/sw/source/ui/inc/condedit.hxx
index 712ee71b865d..e2bdee7052eb 100644
--- a/sw/source/ui/inc/condedit.hxx
+++ b/sw/source/ui/inc/condedit.hxx
@@ -25,7 +25,7 @@
class SW_DLLPUBLIC ConditionEdit : public Edit, public DropTargetHelper
{
- sal_Bool bBrackets, bEnableDrop;
+ bool bBrackets, bEnableDrop;
SW_DLLPRIVATE virtual sal_Int8 AcceptDrop( const AcceptDropEvent& rEvt );
SW_DLLPRIVATE virtual sal_Int8 ExecuteDrop( const ExecuteDropEvent& rEvt );
@@ -33,9 +33,9 @@ class SW_DLLPUBLIC ConditionEdit : public Edit, public DropTargetHelper
public:
ConditionEdit( Window* pParent, const ResId& rResId );
- inline void ShowBrackets(sal_Bool bShow) { bBrackets = bShow; }
+ inline void ShowBrackets(bool bShow) { bBrackets = bShow; }
- inline void SetDropEnable( sal_Bool bFlag ) { bEnableDrop = bFlag; }
+ inline void SetDropEnable( bool bFlag ) { bEnableDrop = bFlag; }
};
#endif