convert dbaccess module from String to OUString

Change-Id: I110c925f8d955dfd841cdd1092c13df4d8205393
This commit is contained in:
Noel Grandin
2013-09-26 12:17:53 +02:00
parent 5a9e9c8a22
commit d11ed5a57e
132 changed files with 825 additions and 825 deletions

View File

@@ -235,7 +235,7 @@ OQueryTableView::~OQueryTableView()
DBG_DTOR(OQueryTableView,NULL);
}
sal_Int32 OQueryTableView::CountTableAlias(const String& rName, sal_Int32& rMax)
sal_Int32 OQueryTableView::CountTableAlias(const OUString& rName, sal_Int32& rMax)
{
DBG_CHKTHIS(OQueryTableView,NULL);
sal_Int32 nRet = 0;
@@ -715,10 +715,10 @@ void OQueryTableView::KeyInput( const KeyEvent& rEvt )
OJoinTableView::KeyInput( rEvt );
}
OQueryTableWindow* OQueryTableView::FindTable(const String& rAliasName)
OQueryTableWindow* OQueryTableView::FindTable(const OUString& rAliasName)
{
DBG_CHKTHIS(OQueryTableView,NULL);
OSL_ENSURE(rAliasName.Len(), "OQueryTableView::FindTable : the AliasName should not be empty !");
OSL_ENSURE(!rAliasName.isEmpty(), "OQueryTableView::FindTable : the AliasName should not be empty !");
// (it is harmless but does not make sense and indicates that there is probably an error in the caller)
OTableWindowMap::const_iterator aIter = GetTabWinMap()->find(rAliasName);
if(aIter != GetTabWinMap()->end())
@@ -726,7 +726,7 @@ OQueryTableWindow* OQueryTableView::FindTable(const String& rAliasName)
return NULL;
}
sal_Bool OQueryTableView::FindTableFromField(const String& rFieldName, OTableFieldDescRef& rInfo, sal_uInt16& rCnt)
sal_Bool OQueryTableView::FindTableFromField(const OUString& rFieldName, OTableFieldDescRef& rInfo, sal_uInt16& rCnt)
{
DBG_CHKTHIS(OQueryTableView,NULL);
rCnt = 0;