diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-17 11:16:55 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-17 11:17:21 +0200 |
commit | fee4efcb54c8162955f6fe626d9b68c3b74b3068 (patch) | |
tree | df8989eab6d8aacb5f37f0673a1a14eb5584a394 /dbaccess/source/ui/querydesign/QueryTabConnUndoAction.hxx | |
parent | 6907b67d3d3208eb54289db2476132188d86dfec (diff) |
dbaccess: sal_Bool->bool
Change-Id: Ieb52470f9638b74898954db3890aaf2cf202290a
Diffstat (limited to 'dbaccess/source/ui/querydesign/QueryTabConnUndoAction.hxx')
-rw-r--r-- | dbaccess/source/ui/querydesign/QueryTabConnUndoAction.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/querydesign/QueryTabConnUndoAction.hxx b/dbaccess/source/ui/querydesign/QueryTabConnUndoAction.hxx index aef48bd3ceb5..72b31532213d 100644 --- a/dbaccess/source/ui/querydesign/QueryTabConnUndoAction.hxx +++ b/dbaccess/source/ui/querydesign/QueryTabConnUndoAction.hxx @@ -29,7 +29,7 @@ namespace dbaui { protected: OQueryTableConnection* m_pConnection; - sal_Bool m_bOwnerOfConn; + bool m_bOwnerOfConn; // am I the only owner of the connection? (changes with every redo and undo) public: @@ -41,7 +41,7 @@ namespace dbaui void SetConnection(OQueryTableConnection* pConn) { m_pConnection = pConn; } // now SetOwnership please - void SetOwnership(sal_Bool bTakeIt) { m_bOwnerOfConn = bTakeIt; } + void SetOwnership(bool bTakeIt) { m_bOwnerOfConn = bTakeIt; } }; } #endif // INCLUDED_DBACCESS_SOURCE_UI_QUERYDESIGN_QUERYTABCONNUNDOACTION_HXX |