diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2017-07-02 13:57:00 +0200 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2017-07-02 13:57:51 +0200 |
commit | 857d64ed3ebbeb0ee4e8a75bfeaa4eb406944571 (patch) | |
tree | 1a191f6d5d01fd63cb29d32da0f2887872003e30 /include/connectivity | |
parent | 3fda57c2488e47b9af3cf9fd219beccc91bfab01 (diff) |
looks like namespace syntax does not work like I think it does
Change-Id: I891bcc49a03ccb6c248065819f0cbbb5cd44d191
Diffstat (limited to 'include/connectivity')
-rw-r--r-- | include/connectivity/dbtools.hxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/connectivity/dbtools.hxx b/include/connectivity/dbtools.hxx index 4b493ee98267..f771ae9f3fbe 100644 --- a/include/connectivity/dbtools.hxx +++ b/include/connectivity/dbtools.hxx @@ -789,7 +789,9 @@ namespace dbtools } // namespace dbtools -namespace connectivity::dbase +namespace connectivity +{ +namespace dbase { enum DBFType { dBaseIII = 0x03, dBaseIV = 0x04, @@ -831,7 +833,9 @@ namespace connectivity::dbase false if nothing was written to _out_nCharset */ OOO_DLLPUBLIC_DBTOOLS bool dbfReadCharset(rtl_TextEncoding &nCharSet, SvStream* dbf_Stream); + } // namespace connectivity::dbase +} // namespace connectivity #endif // INCLUDED_CONNECTIVITY_DBTOOLS_HXX |