No need for RTL_USING in addition to LIBO_INTERNAL_ONLY

Change-Id: Iaa65658aed6bb4abb20a4d95dc9c6caf7c1c764b
This commit is contained in:
Stephan Bergmann
2014-12-19 11:43:51 +01:00
parent f9d3e0f57c
commit d5c86be04e
27 changed files with 360 additions and 378 deletions

View File

@@ -29,7 +29,7 @@
namespace mysqlc_sdbc_driver
{
OUString getStringFromAny(const ::com::sun::star::uno::Any& _rAny);
rtl::OUString getStringFromAny(const ::com::sun::star::uno::Any& _rAny);
void throwFeatureNotImplementedException(
const sal_Char* _pAsciiFeatureName,
@@ -50,9 +50,9 @@ namespace mysqlc_sdbc_driver
int mysqlToOOOType(int mysqlType) throw ();
OUString convert(const ::std::string& _string, const rtl_TextEncoding encoding);
rtl::OUString convert(const ::std::string& _string, const rtl_TextEncoding encoding);
::std::string convert(const OUString& _string, const rtl_TextEncoding encoding);
::std::string convert(const rtl::OUString& _string, const rtl_TextEncoding encoding);
}
#endif