From dcd8e4664d9a284c24ceb0360cab0606b22cf86d Mon Sep 17 00:00:00 2001
From: Mikhail Voytenko <mav@openoffice.org>
Date: Fri, 7 Jan 2011 17:14:47 +0100
Subject: removetooltypes: #i112600# remove tooltypes

---
 sfx2/source/inc/splitwin.hxx | 66 ++++++++++++++++++++++----------------------
 1 file changed, 33 insertions(+), 33 deletions(-)

(limited to 'sfx2/source/inc/splitwin.hxx')

diff --git a/sfx2/source/inc/splitwin.hxx b/sfx2/source/inc/splitwin.hxx
index 5105d27dd536..4c4ad9cf9390 100644
--- a/sfx2/source/inc/splitwin.hxx
+++ b/sfx2/source/inc/splitwin.hxx
@@ -46,21 +46,21 @@ private:
     SfxChildAlignment   eAlign;
     SfxWorkWindow*      pWorkWin;
     SfxDockArr_Impl*    pDockArr;
-    BOOL                bLocked;
-    BOOL                bPinned;
+    sal_Bool                bLocked;
+    sal_Bool                bPinned;
     SfxEmptySplitWin_Impl*  pEmptyWin;
     SfxDockingWindow*   pActive;
 
     void                InsertWindow_Impl( SfxDock_Impl* pDockWin,
                             const Size& rSize,
-                            USHORT nLine,
-                            USHORT nPos,
-                            BOOL bNewLine=FALSE );
+                            sal_uInt16 nLine,
+                            sal_uInt16 nPos,
+                            sal_Bool bNewLine=sal_False );
 
     DECL_LINK(          TimerHdl, Timer* );
-    BOOL                CursorIsOverRect( BOOL bForceAdding = FALSE ) const;
-    void                SetPinned_Impl( BOOL );
-    void                SetFadeIn_Impl( BOOL );
+    sal_Bool                CursorIsOverRect( sal_Bool bForceAdding = sal_False ) const;
+    void                SetPinned_Impl( sal_Bool );
+    void                SetFadeIn_Impl( sal_Bool );
     void                SaveConfig_Impl();
     void                FadeOut_Impl();
 
@@ -74,57 +74,57 @@ protected:
 
 public:
                         SfxSplitWindow( Window* pParent, SfxChildAlignment eAl,
-                            SfxWorkWindow *pW, BOOL bWithButtons,
+                            SfxWorkWindow *pW, sal_Bool bWithButtons,
                             WinBits nBits = WB_BORDER | WB_SIZEABLE | WB_3DLOOK );
 
                         ~SfxSplitWindow();
 
-    void                ReleaseWindow_Impl(SfxDockingWindow *pWin, BOOL bSaveConfig=TRUE);
+    void                ReleaseWindow_Impl(SfxDockingWindow *pWin, sal_Bool bSaveConfig=sal_True);
 
     void                InsertWindow( SfxDockingWindow* pDockWin,
                             const Size& rSize);
 
     void                InsertWindow( SfxDockingWindow* pDockWin,
                             const Size& rSize,
-                            USHORT nLine,
-                            USHORT nPos,
-                            BOOL bNewLine=FALSE );
+                            sal_uInt16 nLine,
+                            sal_uInt16 nPos,
+                            sal_Bool bNewLine=sal_False );
 
     void                MoveWindow( SfxDockingWindow* pDockWin,
                             const Size& rSize,
-                            USHORT nLine,
-                            USHORT nPos,
-                            BOOL bNewLine=FALSE );
+                            sal_uInt16 nLine,
+                            sal_uInt16 nPos,
+                            sal_Bool bNewLine=sal_False );
 
-    void                RemoveWindow( SfxDockingWindow* pDockWin, BOOL bHide=TRUE);
+    void                RemoveWindow( SfxDockingWindow* pDockWin, sal_Bool bHide=sal_True);
 
-    void                Lock( BOOL bLock=TRUE )
+    void                Lock( sal_Bool bLock=sal_True )
                         {
                             bLocked = bLock;
                             SetUpdateMode( !bLock );
                         }
         using Window::IsLocked;
-    BOOL                IsLocked() const { return bLocked; }
-    BOOL                GetWindowPos( const SfxDockingWindow* pWindow,
-                                      USHORT& rLine, USHORT& rPos ) const;
-    BOOL                GetWindowPos( const Point& rTestPos,
-                                      USHORT& rLine, USHORT& rPos ) const;
-    USHORT              GetLineCount() const;
-    long                GetLineSize( USHORT ) const;
-    USHORT              GetWindowCount(USHORT nLine) const;
-    USHORT              GetWindowCount() const;
-
-    BOOL                IsPinned() const { return bPinned; }
-    BOOL                IsFadeIn() const;
-    BOOL                IsAutoHide( BOOL bSelf = FALSE ) const;
+    sal_Bool                IsLocked() const { return bLocked; }
+    sal_Bool                GetWindowPos( const SfxDockingWindow* pWindow,
+                                      sal_uInt16& rLine, sal_uInt16& rPos ) const;
+    sal_Bool                GetWindowPos( const Point& rTestPos,
+                                      sal_uInt16& rLine, sal_uInt16& rPos ) const;
+    sal_uInt16              GetLineCount() const;
+    long                GetLineSize( sal_uInt16 ) const;
+    sal_uInt16              GetWindowCount(sal_uInt16 nLine) const;
+    sal_uInt16              GetWindowCount() const;
+
+    sal_Bool                IsPinned() const { return bPinned; }
+    sal_Bool                IsFadeIn() const;
+    sal_Bool                IsAutoHide( sal_Bool bSelf = sal_False ) const;
     SplitWindow*        GetSplitWindow();
 
     virtual void        AutoHide();
     virtual void        FadeOut();
     virtual void        FadeIn();
     void                Show_Impl();
-    void                Pin_Impl( BOOL bPinned );
-    BOOL                ActivateNextChild_Impl( BOOL bForward = TRUE );
+    void                Pin_Impl( sal_Bool bPinned );
+    sal_Bool                ActivateNextChild_Impl( sal_Bool bForward = sal_True );
     void                SetActiveWindow_Impl( SfxDockingWindow* pWin );
 };
 
-- 
cgit