Fix condition in f573402116937876cb0b80cf7af2a52bf2ccc31a
Change-Id: I6b755c64da5050f69114f63c693ff25c7b12991f
This commit is contained in:
parent
da37548dab
commit
3ca649430c
1 changed files with 1 additions and 1 deletions
|
@ -474,7 +474,7 @@ ScImportAsciiDlg::ScImportAsciiDlg( vcl::Window* pParent, const OUString& aDatNa
|
|||
pLbCustomLang->SelectLanguage(static_cast<LanguageType>(nLanguage));
|
||||
|
||||
// *** column type ListBox ***
|
||||
for (sal_Int32 nIdx {0}; nIdx>0; )
|
||||
for (sal_Int32 nIdx {0}; nIdx>=0; )
|
||||
{
|
||||
pLbType->InsertEntry( aColumnUser.getToken( 0, ';', nIdx ) );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue