summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/inc/TableDesignControl.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-17 11:16:55 +0200
committerNoel Grandin <noel@peralex.com>2014-04-17 11:17:21 +0200
commitfee4efcb54c8162955f6fe626d9b68c3b74b3068 (patch)
treedf8989eab6d8aacb5f37f0673a1a14eb5584a394 /dbaccess/source/ui/inc/TableDesignControl.hxx
parent6907b67d3d3208eb54289db2476132188d86dfec (diff)
dbaccess: sal_Bool->bool
Change-Id: Ieb52470f9638b74898954db3890aaf2cf202290a
Diffstat (limited to 'dbaccess/source/ui/inc/TableDesignControl.hxx')
-rw-r--r--dbaccess/source/ui/inc/TableDesignControl.hxx16
1 files changed, 8 insertions, 8 deletions
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;