diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-17 11:40:23 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-17 15:20:42 +0200 |
commit | 1d6c30889d808ec50d0a5c6164481ebc09f6fce4 (patch) | |
tree | 39ea402f6b485781d4d2ccb2e81632a972322922 /dbaccess | |
parent | 4b431291bba8429ea80c43721bc6dd5f0ad4d2e8 (diff) |
Use bool instead of sal_Bool
Change-Id: I931d1931c231e9b8a489d718bd51b490bda071c2
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ui/inc/tabletree.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/inc/tabletree.hxx b/dbaccess/source/ui/inc/tabletree.hxx index 52afd2764b40..f9390a9965f2 100644 --- a/dbaccess/source/ui/inc/tabletree.hxx +++ b/dbaccess/source/ui/inc/tabletree.hxx @@ -50,7 +50,7 @@ public: void init(bool bVirtualRoot) { m_bVirtualRoot = bVirtualRoot; } - typedef ::std::pair< OUString,sal_Bool> TTableViewName; + typedef ::std::pair< OUString, bool > TTableViewName; typedef ::std::vector< TTableViewName > TNames; void suppressEmptyFolders() { m_bNoEmptyFolders = true; } |