summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2011-12-12 22:00:26 +0100
committerJulien Nabet <serval2412@yahoo.fr>2011-12-12 22:01:47 +0100
commit84a3f11c7a0cce586c15246079ea807aec38a439 (patch)
tree56424b71ed428ff26770a9e8c866cf17dbfe8372 /connectivity
parent5924454a867bd500fdc696bb9939c84425c5e025 (diff)
Remove ByteString
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/dbase/DIndex.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/dbase/DIndex.cxx b/connectivity/source/drivers/dbase/DIndex.cxx
index 0e22387bff3f..c5a0e4c45784 100644
--- a/connectivity/source/drivers/dbase/DIndex.cxx
+++ b/connectivity/source/drivers/dbase/DIndex.cxx
@@ -443,7 +443,7 @@ sal_Bool ODbaseIndex::DropImpl()
Config aInfFile(sPhysicalPath);
aInfFile.SetGroup(dBASE_III_GROUP);
sal_uInt16 nKeyCnt = aInfFile.GetKeyCount();
- ByteString aKeyName;
+ rtl::OString aKeyName;
String sEntry = m_Name;
sEntry += String::CreateFromAscii(".ndx");
@@ -452,7 +452,7 @@ sal_Bool ODbaseIndex::DropImpl()
{
// References the Key to an Index-file?
aKeyName = aInfFile.GetKeyName( nKey );
- if (aKeyName.Copy(0,3) == "NDX")
+ if (aKeyName.copy(0,3) == "NDX")
{
if(sEntry == String(rtl::OStringToOUString(aInfFile.ReadKey(aKeyName),m_pTable->getConnection()->getTextEncoding())))
{