Fix condition in f573402116937876cb0b80cf7af2a52bf2ccc31a

Change-Id: I6b755c64da5050f69114f63c693ff25c7b12991f
This commit is contained in:
Matteo Casalin 2018-09-09 00:25:34 +02:00
parent da37548dab
commit 3ca649430c

View file

@ -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 ) );
}