summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-20 08:44:03 +0200
committerNoel Grandin <noel@peralex.com>2014-02-21 12:19:23 +0200
commit5a5a80dd5c19541fd1c0d40d9b0ecbb60bc0a1ae (patch)
tree9bf09477d5e788fa8ffb65f53a518cdc689dcb59 /include
parent32ef676504de5a35e9ee4ddcce9313dcab7d74ee (diff)
editeng: sal_Bool->bool
Change-Id: I92935238ff016dc441db72e3aadc28466fe84e68
Diffstat (limited to 'include')
-rw-r--r--include/editeng/charrotateitem.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/editeng/charrotateitem.hxx b/include/editeng/charrotateitem.hxx
index 27b9433a6105..e0677e0818bf 100644
--- a/include/editeng/charrotateitem.hxx
+++ b/include/editeng/charrotateitem.hxx
@@ -35,12 +35,12 @@
class EDITENG_DLLPUBLIC SvxCharRotateItem : public SfxUInt16Item
{
- sal_Bool bFitToLine;
+ bool bFitToLine;
public:
TYPEINFO();
SvxCharRotateItem( sal_uInt16 nValue /*= 0*/,
- sal_Bool bFitIntoLine /*= sal_False*/,
+ bool bFitIntoLine /*= false*/,
const sal_uInt16 nId );
virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const;
@@ -69,11 +69,11 @@ public:
// our currently only degree values
void SetTopToBotton() { SetValue( 2700 ); }
void SetBottomToTop() { SetValue( 900 ); }
- sal_Bool IsTopToBotton() const { return 2700 == GetValue(); }
- sal_Bool IsBottomToTop() const { return 900 == GetValue(); }
+ bool IsTopToBotton() const { return 2700 == GetValue(); }
+ bool IsBottomToTop() const { return 900 == GetValue(); }
- sal_Bool IsFitToLine() const { return bFitToLine; }
- void SetFitToLine( sal_Bool b ) { bFitToLine = b; }
+ bool IsFitToLine() const { return bFitToLine; }
+ void SetFitToLine( bool b ) { bFitToLine = b; }
};
#endif