diff options
author | Mikhail Voytenko <mav@openoffice.org> | 2011-01-11 16:23:55 +0100 |
---|---|---|
committer | Mikhail Voytenko <mav@openoffice.org> | 2011-01-11 16:23:55 +0100 |
commit | 698c00dbdd95ebc3c6df113133076979ff2cd0a7 (patch) | |
tree | adf73cb3197fabd1120ca007ddc0b50166103745 /svtools/source/brwbox/datwin.hxx | |
parent | 322a75edf8bad6616b1543a6b81972f4c3765ee2 (diff) |
removetooltypes01: #i112600# do not affect FASTBOOL in this cws
Diffstat (limited to 'svtools/source/brwbox/datwin.hxx')
-rw-r--r-- | svtools/source/brwbox/datwin.hxx | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/svtools/source/brwbox/datwin.hxx b/svtools/source/brwbox/datwin.hxx index 010d86efc249..6061d028ed18 100644 --- a/svtools/source/brwbox/datwin.hxx +++ b/svtools/source/brwbox/datwin.hxx @@ -133,21 +133,21 @@ public: String aRealRowCount; // zur Anzeige im VScrollBar RectangleList aInvalidRegion; // invalidated Rectangles during !UpdateMode - int bInPaint; // sal_True while in Paint - int bInCommand; // sal_True while in Command - int bNoScrollBack; // nur vorwaerts scrollen - int bNoHScroll; // kein horizontaler Scrollbar - int bNoVScroll; // no vertical scrollbar - int bAutoHScroll; // autohide horizontaler Scrollbar - int bAutoVScroll; // autohide horizontaler Scrollbar - int bUpdateMode; // nicht SV-UpdateMode wegen Invalidate() - int bAutoSizeLastCol;// last column always fills up window - int bResizeOnPaint; // outstanding resize-event - int bUpdateOnUnlock; // Update() while locked - int bInUpdateScrollbars; // Rekursionsschutz - int bHadRecursion; // Rekursion war aufgetreten - int bOwnDataChangedHdl; // dont change colors in DataChanged - int bCallingDropCallback; // we're in a callback to AcceptDrop or ExecuteDrop curently + FASTBOOL bInPaint; // sal_True while in Paint + FASTBOOL bInCommand; // sal_True while in Command + FASTBOOL bNoScrollBack; // nur vorwaerts scrollen + FASTBOOL bNoHScroll; // kein horizontaler Scrollbar + FASTBOOL bNoVScroll; // no vertical scrollbar + FASTBOOL bAutoHScroll; // autohide horizontaler Scrollbar + FASTBOOL bAutoVScroll; // autohide horizontaler Scrollbar + FASTBOOL bUpdateMode; // nicht SV-UpdateMode wegen Invalidate() + FASTBOOL bAutoSizeLastCol;// last column always fills up window + FASTBOOL bResizeOnPaint; // outstanding resize-event + FASTBOOL bUpdateOnUnlock; // Update() while locked + FASTBOOL bInUpdateScrollbars; // Rekursionsschutz + FASTBOOL bHadRecursion; // Rekursion war aufgetreten + FASTBOOL bOwnDataChangedHdl; // dont change colors in DataChanged + FASTBOOL bCallingDropCallback; // we're in a callback to AcceptDrop or ExecuteDrop curently sal_uInt16 nUpdateLock; // lock count, dont call Control::Update()! short nCursorHidden; // new conuter for DoHide/ShowCursor @@ -185,7 +185,7 @@ public: const String& GetRealRowCount() const { return aRealRowCount; } void SetUpdateMode( sal_Bool bMode ); - int GetUpdateMode() const { return bUpdateMode; } + FASTBOOL GetUpdateMode() const { return bUpdateMode; } void EnterUpdateLock() { ++nUpdateLock; } void LeaveUpdateLock(); void Update(); |