summaryrefslogtreecommitdiffstats
path: root/lib/kotext/KoTextCustomItem.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/kotext/KoTextCustomItem.h')
-rw-r--r--lib/kotext/KoTextCustomItem.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/kotext/KoTextCustomItem.h b/lib/kotext/KoTextCustomItem.h
index 73ee8942b..42496c634 100644
--- a/lib/kotext/KoTextCustomItem.h
+++ b/lib/kotext/KoTextCustomItem.h
@@ -53,12 +53,12 @@ public:
virtual Placement placement() const { return PlaceInline; }
bool placeInline() { return placement() == PlaceInline; }
- virtual bool ownLine() const { return FALSE; }
+ virtual bool ownLine() const { return false; }
// Called for "ownline" items
virtual void resize( int nwidth ) { width = nwidth; }
virtual void invalidate() {};
- virtual bool isNested() const { return FALSE; }
+ virtual bool isNested() const { return false; }
virtual int minimumWidth() const { return 0; }
virtual int widthHint() const { return 0; }
virtual int ascent() const { return height; }
@@ -70,7 +70,7 @@ public:
TQRect geometry() const { return TQRect( xpos, ypos, width, height ); }
- virtual bool enter( KoTextCursor *, KoTextDocument *&doc, KoTextParag *&parag, int &idx, int &ox, int &oy, bool atEnd = FALSE );
+ virtual bool enter( KoTextCursor *, KoTextDocument *&doc, KoTextParag *&parag, int &idx, int &ox, int &oy, bool atEnd = false );
virtual bool enterAt( KoTextCursor *, KoTextDocument *&doc, KoTextParag *&parag, int &idx, int &ox, int &oy, const TQPoint & );
virtual bool next( KoTextCursor *, KoTextDocument *&doc, KoTextParag *&parag, int &idx, int &ox, int &oy );
virtual bool prev( KoTextCursor *, KoTextDocument *&doc, KoTextParag *&parag, int &idx, int &ox, int &oy );