summaryrefslogtreecommitdiff
path: root/include/vcl/lstbox.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-21 12:53:51 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-21 12:53:51 +0100
commite8f8f24c8415898c787bbfb629247ed62e73a2b9 (patch)
treedae18a3acbf29c192118e7c003f80df8da8e21ae /include/vcl/lstbox.hxx
parent1c8402465cfd4df862409dc310f5f099d044c4d8 (diff)
vcl: sal_Bool -> bool
Change-Id: I2a3e3d3e3266ea0f0fafdd91362076a4aa160f0e
Diffstat (limited to 'include/vcl/lstbox.hxx')
-rw-r--r--include/vcl/lstbox.hxx28
1 files changed, 14 insertions, 14 deletions
diff --git a/include/vcl/lstbox.hxx b/include/vcl/lstbox.hxx
index c918d1e598ae..8f986fcbc63b 100644
--- a/include/vcl/lstbox.hxx
+++ b/include/vcl/lstbox.hxx
@@ -70,7 +70,7 @@ protected:
SAL_DLLPRIVATE void ImplInit( Window* pParent, WinBits nStyle );
SAL_DLLPRIVATE WinBits ImplInitStyle( WinBits nStyle );
SAL_DLLPRIVATE void ImplLoadRes( const ResId& rResId );
- sal_Bool IsDropDownBox() const { return mpFloatWin ? sal_True : sal_False; }
+ bool IsDropDownBox() const { return mpFloatWin ? sal_True : sal_False; }
protected:
explicit ListBox( WindowType nType );
@@ -113,7 +113,7 @@ public:
void EnableAutoSize( bool bAuto );
bool IsAutoSizeEnabled() const { return mbDDAutoSize; }
- void EnableDDAutoWidth( sal_Bool b );
+ void EnableDDAutoWidth( bool b );
sal_uInt16 InsertEntry( const OUString& rStr, sal_uInt16 nPos = LISTBOX_APPEND );
sal_uInt16 InsertEntry( const OUString& rStr, const Image& rImage, sal_uInt16 nPos = LISTBOX_APPEND );
@@ -128,15 +128,15 @@ public:
OUString GetEntry( sal_uInt16 nPos ) const;
sal_uInt16 GetEntryCount() const;
- void SelectEntry( const OUString& rStr, sal_Bool bSelect = sal_True );
- void SelectEntryPos( sal_uInt16 nPos, sal_Bool bSelect = sal_True );
+ void SelectEntry( const OUString& rStr, bool bSelect = true );
+ void SelectEntryPos( sal_uInt16 nPos, bool bSelect = true );
sal_uInt16 GetSelectEntryCount() const;
OUString GetSelectEntry( sal_uInt16 nSelIndex = 0 ) const;
sal_uInt16 GetSelectEntryPos( sal_uInt16 nSelIndex = 0 ) const;
bool IsEntrySelected(const OUString& rStr) const;
- sal_Bool IsEntryPosSelected( sal_uInt16 nPos ) const;
+ bool IsEntryPosSelected( sal_uInt16 nPos ) const;
void SetNoSelection();
void SetEntryData( sal_uInt16 nPos, void* pNewData );
@@ -168,24 +168,24 @@ public:
void SetSeparatorPos( sal_uInt16 n = LISTBOX_ENTRY_NOTFOUND );
sal_uInt16 GetSeparatorPos() const;
- sal_Bool IsTravelSelect() const;
- sal_Bool IsInDropDown() const;
+ bool IsTravelSelect() const;
+ bool IsInDropDown() const;
void ToggleDropDown();
- void EnableMultiSelection( sal_Bool bMulti, sal_Bool bStackSelection );
- void EnableMultiSelection( sal_Bool bMulti );
- sal_Bool IsMultiSelectionEnabled() const;
+ void EnableMultiSelection( bool bMulti, bool bStackSelection );
+ void EnableMultiSelection( bool bMulti );
+ bool IsMultiSelectionEnabled() const;
- void SetReadOnly( sal_Bool bReadOnly = sal_True );
- sal_Bool IsReadOnly() const;
+ void SetReadOnly( bool bReadOnly = true );
+ bool IsReadOnly() const;
Rectangle GetBoundingRectangle( sal_uInt16 nItem ) const;
void SetUserItemSize( const Size& rSz );
- void EnableUserDraw( sal_Bool bUserDraw );
+ void EnableUserDraw( bool bUserDraw );
- void DrawEntry( const UserDrawEvent& rEvt, sal_Bool bDrawImage, sal_Bool bDrawText, sal_Bool bDrawTextAtImagePos = sal_False );
+ void DrawEntry( const UserDrawEvent& rEvt, bool bDrawImage, bool bDrawText, bool bDrawTextAtImagePos = false );
void SetSelectHdl( const Link& rLink ) { maSelectHdl = rLink; }
const Link& GetSelectHdl() const { return maSelectHdl; }