From fee4efcb54c8162955f6fe626d9b68c3b74b3068 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 17 Apr 2014 11:16:55 +0200 Subject: dbaccess: sal_Bool->bool Change-Id: Ieb52470f9638b74898954db3890aaf2cf202290a --- dbaccess/source/ui/inc/TableDesignControl.hxx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'dbaccess/source/ui/inc/TableDesignControl.hxx') diff --git a/dbaccess/source/ui/inc/TableDesignControl.hxx b/dbaccess/source/ui/inc/TableDesignControl.hxx index 67a719f271bb..ca99ce7464ce 100644 --- a/dbaccess/source/ui/inc/TableDesignControl.hxx +++ b/dbaccess/source/ui/inc/TableDesignControl.hxx @@ -41,9 +41,9 @@ namespace dbaui sal_uInt16 m_nCurUndoActId; protected: - sal_Bool m_bCurrentModified; - sal_Bool m_bUpdatable; - sal_Bool m_bClipboardFilled; + bool m_bCurrentModified; + bool m_bUpdatable; + bool m_bClipboardFilled; public: OTableRowView(Window* pParent); @@ -72,12 +72,12 @@ namespace dbaui virtual void InsertRows( long nRow ) = 0; virtual void InsertNewRows( long nRow ) = 0; - virtual sal_Bool IsPrimaryKeyAllowed( long nRow ) = 0; - virtual sal_Bool IsInsertNewAllowed( long nRow ) = 0; - virtual sal_Bool IsDeleteAllowed( long nRow ) = 0; + virtual bool IsPrimaryKeyAllowed( long nRow ) = 0; + virtual bool IsInsertNewAllowed( long nRow ) = 0; + virtual bool IsDeleteAllowed( long nRow ) = 0; - virtual sal_Bool IsUpdatable() const {return m_bUpdatable;} - virtual void SetUpdatable( sal_Bool bUpdate=sal_True ); + virtual bool IsUpdatable() const {return m_bUpdatable;} + virtual void SetUpdatable( bool bUpdate=true ); virtual RowStatus GetRowStatus(long nRow) const SAL_OVERRIDE; virtual void KeyInput(const KeyEvent& rEvt) SAL_OVERRIDE; -- cgit