From 6168332c3507ece9ce5fac75819758fa6551d327 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Sun, 21 Sep 2008 08:43:06 +0000 Subject: [PATCH] Sorry, should have been part of r27660. Moved BTextView::UndoBuffer derivatives into BTextView class as well, hopefully fixing the GCC4 build. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27661 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/os/interface/TextView.h | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/headers/os/interface/TextView.h b/headers/os/interface/TextView.h index f88de2810a..3f8bc9a7d3 100644 --- a/headers/os/interface/TextView.h +++ b/headers/os/interface/TextView.h @@ -175,11 +175,10 @@ public: void SetTextRect(BRect rect); BRect TextRect() const; - void SetInsets(float _leftInset, float topInset, - float rightInset, float bottomInset); - void GetInsets(float* _leftInset, float* _topInset, - float* _rightInset, - float* _bottomInset) const; + void SetInsets(float left, float top, float right, + float bottom); + void GetInsets(float* _left, float* _top, + float* _right, float* _bottom) const; void SetStylable(bool stylable); bool IsStylable() const; @@ -249,6 +248,13 @@ private: class UndoBuffer; class WidthBuffer; + // UndoBuffer deratives + class CutUndoBuffer; + class PasteUndoBuffer; + class ClearUndoBuffer; + class DropUndoBuffer; + class TypingUndoBuffer; + friend class TextTrackState; friend status_t _init_interface_kit_(); @@ -388,7 +394,9 @@ private: BPoint fWhere; TextTrackState* fTrackingMouse; - uint32 _reserved[9]; + LayoutData* fLayoutData; + + uint32 _reserved[8]; static WidthBuffer* sWidths; };