diff options
author | Tor Lillqvist <tml@collabora.com> | 2013-10-02 21:56:10 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2013-10-02 21:57:42 +0300 |
commit | e036d4b706685b995a497808e357b9fd2eb9d965 (patch) | |
tree | e1981081ae4b49913db9923795fb43236a48ab8a /dbaccess/source/ui | |
parent | 4d646780dee68d319b0b801111e99cb2eab03a5d (diff) |
Spell "indices" correctly
Change-Id: I63b1de195bf2f3f8bfd185181f48b1520cdd849f
Diffstat (limited to 'dbaccess/source/ui')
-rw-r--r-- | dbaccess/source/ui/dlg/dbfindex.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/dbaccess/source/ui/dlg/dbfindex.cxx b/dbaccess/source/ui/dlg/dbfindex.cxx index c96df2b413fc..37b4e95bf6b5 100644 --- a/dbaccess/source/ui/dlg/dbfindex.cxx +++ b/dbaccess/source/ui/dlg/dbfindex.cxx @@ -278,9 +278,9 @@ void ODbaseIndexDialog::Init() aIB_AddAll.Disable(); aIB_RemoveAll.Disable(); - // All indizes are first added to a list of free indizes. + // All indices are first added to a list of free indices. // Afterwards, check the index of each table in the Inf-file. - // These indizes are removed from the list of free indizes and + // These indices are removed from the list of free indices and // entered in the indexlist of the table. // if the string does not contain a path, cut the string @@ -400,7 +400,7 @@ void ODbaseIndexDialog::SetCtrls() const OTableInfo& rTabInfo = m_aTableInfoList.front(); aCB_Tables.SetText( rTabInfo.aTableName ); - // build ListBox of the table indizes + // build ListBox of the table indices for ( ConstTableIndexListIterator aIndex = rTabInfo.aIndexList.begin(); aIndex != rTabInfo.aIndexList.end(); ++aIndex @@ -411,7 +411,7 @@ void ODbaseIndexDialog::SetCtrls() aLB_TableIndexes.SelectEntryPos( 0 ); } - // ListBox of the free indizes + // ListBox of the free indices for ( ConstTableIndexListIterator aFree = m_aFreeIndexList.begin(); aFree != m_aFreeIndexList.end(); ++aFree @@ -443,7 +443,7 @@ void OTableInfo::WriteInfFile( const OUString& rDSN ) const Config aInfFile( aTransformer.get(OFileNotation::N_SYSTEM) ); aInfFile.SetGroup( aGroupIdent ); - // first, delete all table indizes + // first, delete all table indices OString aNDX; sal_uInt16 nKeyCnt = aInfFile.GetKeyCount(); sal_uInt16 nKey = 0; @@ -465,7 +465,7 @@ void OTableInfo::WriteInfFile( const OUString& rDSN ) const } - // now add all saved indizes + // now add all saved indices sal_uInt16 nPos = 0; for ( ConstTableIndexListIterator aIndex = aIndexList.begin(); aIndex != aIndexList.end(); |