summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/mork/MNSINIParser.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/mork/MNSINIParser.hxx')
-rw-r--r--connectivity/source/drivers/mork/MNSINIParser.hxx11
1 files changed, 4 insertions, 7 deletions
diff --git a/connectivity/source/drivers/mork/MNSINIParser.hxx b/connectivity/source/drivers/mork/MNSINIParser.hxx
index e6941bcc5bad..7f078a776e94 100644
--- a/connectivity/source/drivers/mork/MNSINIParser.hxx
+++ b/connectivity/source/drivers/mork/MNSINIParser.hxx
@@ -30,13 +30,10 @@
#include <stdio.h>
#endif
-using ::rtl::OUString;
-using ::rtl::OString;
-
struct ini_NameValue
{
- rtl::OUString sName;
- rtl::OUString sValue;
+ OUString sName;
+ OUString sValue;
inline ini_NameValue() SAL_THROW(())
{}
@@ -53,10 +50,10 @@ typedef std::list<
struct ini_Section
{
- rtl::OUString sName;
+ OUString sName;
NameValueList lList;
};
-typedef std::map<rtl::OUString,
+typedef std::map<OUString,
ini_Section
>IniSectionMap;