summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/dlg/DriverSettings.cxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-04-07 12:06:47 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-04-07 14:23:11 +0200
commit1946794ae09ba732022fe6a74ea45e304ab70b84 (patch)
treee32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /dbaccess/source/ui/dlg/DriverSettings.cxx
parent5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (diff)
mass removal of rtl:: prefixes for O(U)String*
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
Diffstat (limited to 'dbaccess/source/ui/dlg/DriverSettings.cxx')
-rw-r--r--dbaccess/source/ui/dlg/DriverSettings.cxx50
1 files changed, 25 insertions, 25 deletions
diff --git a/dbaccess/source/ui/dlg/DriverSettings.cxx b/dbaccess/source/ui/dlg/DriverSettings.cxx
index e60236d7608b..b613cd697590 100644
--- a/dbaccess/source/ui/dlg/DriverSettings.cxx
+++ b/dbaccess/source/ui/dlg/DriverSettings.cxx
@@ -30,7 +30,7 @@ using ::com::sun::star::uno::Sequence;
using ::com::sun::star::beans::NamedValue;
using namespace dbaui;
-void ODriversSettings::getSupportedIndirectSettings( const ::rtl::OUString& _sURLPrefix,const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _xContext, ::std::vector< sal_Int32>& _out_rDetailsIds )
+void ODriversSettings::getSupportedIndirectSettings( const OUString& _sURLPrefix,const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _xContext, ::std::vector< sal_Int32>& _out_rDetailsIds )
{
// for a number of settings, we do not need to use hard-coded here, but can ask a
// central DataSourceUI instance.
@@ -67,30 +67,30 @@ void ODriversSettings::getSupportedIndirectSettings( const ::rtl::OUString& _sUR
}
}
#endif
- typedef ::std::pair<sal_uInt16, ::rtl::OUString> TProperties;
- TProperties aProps[] = { TProperties(DSID_SHOWDELETEDROWS,::rtl::OUString("ShowDeleted"))
- ,TProperties(DSID_CHARSET,::rtl::OUString("CharSet"))
- ,TProperties(DSID_FIELDDELIMITER,::rtl::OUString("FieldDelimiter"))
- ,TProperties(DSID_TEXTDELIMITER,::rtl::OUString("StringDelimiter"))
- ,TProperties(DSID_DECIMALDELIMITER,::rtl::OUString("DecimalDelimiter"))
- ,TProperties(DSID_THOUSANDSDELIMITER,::rtl::OUString("ThousandDelimiter"))
- ,TProperties(DSID_TEXTFILEEXTENSION,::rtl::OUString("Extension"))
- ,TProperties(DSID_TEXTFILEHEADER,::rtl::OUString("HeaderLine"))
- ,TProperties(DSID_ADDITIONALOPTIONS,::rtl::OUString("SystemDriverSettings"))
- ,TProperties(DSID_CONN_SHUTSERVICE,::rtl::OUString("ShutdownDatabase"))
- ,TProperties(DSID_CONN_DATAINC,::rtl::OUString("DataCacheSizeIncrement"))
- ,TProperties(DSID_CONN_CACHESIZE,::rtl::OUString("DataCacheSize"))
- ,TProperties(DSID_CONN_CTRLUSER,::rtl::OUString("ControlUser"))
- ,TProperties(DSID_CONN_CTRLPWD,::rtl::OUString("ControlPassword"))
- ,TProperties(DSID_USECATALOG,::rtl::OUString("UseCatalog"))
- ,TProperties(DSID_CONN_SOCKET,::rtl::OUString("LocalSocket"))
- ,TProperties(DSID_NAMED_PIPE,::rtl::OUString("NamedPipe"))
- ,TProperties(DSID_JDBCDRIVERCLASS,::rtl::OUString("JavaDriverClass"))
- ,TProperties(DSID_CONN_LDAP_BASEDN,::rtl::OUString("BaseDN"))
- ,TProperties(DSID_CONN_LDAP_ROWCOUNT,::rtl::OUString("MaxRowCount"))
- ,TProperties(DSID_CONN_LDAP_USESSL,::rtl::OUString("UseSSL"))
- ,TProperties(DSID_IGNORECURRENCY,::rtl::OUString("IgnoreCurrency"))
- ,TProperties(0,::rtl::OUString())
+ typedef ::std::pair<sal_uInt16, OUString> TProperties;
+ TProperties aProps[] = { TProperties(DSID_SHOWDELETEDROWS,OUString("ShowDeleted"))
+ ,TProperties(DSID_CHARSET,OUString("CharSet"))
+ ,TProperties(DSID_FIELDDELIMITER,OUString("FieldDelimiter"))
+ ,TProperties(DSID_TEXTDELIMITER,OUString("StringDelimiter"))
+ ,TProperties(DSID_DECIMALDELIMITER,OUString("DecimalDelimiter"))
+ ,TProperties(DSID_THOUSANDSDELIMITER,OUString("ThousandDelimiter"))
+ ,TProperties(DSID_TEXTFILEEXTENSION,OUString("Extension"))
+ ,TProperties(DSID_TEXTFILEHEADER,OUString("HeaderLine"))
+ ,TProperties(DSID_ADDITIONALOPTIONS,OUString("SystemDriverSettings"))
+ ,TProperties(DSID_CONN_SHUTSERVICE,OUString("ShutdownDatabase"))
+ ,TProperties(DSID_CONN_DATAINC,OUString("DataCacheSizeIncrement"))
+ ,TProperties(DSID_CONN_CACHESIZE,OUString("DataCacheSize"))
+ ,TProperties(DSID_CONN_CTRLUSER,OUString("ControlUser"))
+ ,TProperties(DSID_CONN_CTRLPWD,OUString("ControlPassword"))
+ ,TProperties(DSID_USECATALOG,OUString("UseCatalog"))
+ ,TProperties(DSID_CONN_SOCKET,OUString("LocalSocket"))
+ ,TProperties(DSID_NAMED_PIPE,OUString("NamedPipe"))
+ ,TProperties(DSID_JDBCDRIVERCLASS,OUString("JavaDriverClass"))
+ ,TProperties(DSID_CONN_LDAP_BASEDN,OUString("BaseDN"))
+ ,TProperties(DSID_CONN_LDAP_ROWCOUNT,OUString("MaxRowCount"))
+ ,TProperties(DSID_CONN_LDAP_USESSL,OUString("UseSSL"))
+ ,TProperties(DSID_IGNORECURRENCY,OUString("IgnoreCurrency"))
+ ,TProperties(0,OUString())
};
// TODO: This mapping between IDs and property names already exists - in ODbDataSourceAdministrationHelper::ODbDataSourceAdministrationHelper.
// Another mapping (which is also duplicated in ODbDataSourceAdministrationHelper) exists in dsmeta.cxx. We should