Fix 'format not a string literal' error

(cherry picked from commit 14ba7d8af6)
v3.5.13-sru
Timothy Pearson 13 years ago committed by Slávek Banko
parent 78523dba12
commit da7ec372e6

@ -334,7 +334,6 @@ void CSVImportDlg::accept()
TQValueList<int> headers;
TQStringList list;
TQString name = getDatabaseName();
int i = 0;
TQString q = "INSERT INTO " + name + " (";
for( int c = 0; c < table->horizontalHeader()->count(); c++ ) {
@ -375,7 +374,7 @@ void CSVImportDlg::accept()
TQSqlQuery query;
if( !query.exec( line ) )
qDebug( i18n("Could not import the following line:") + line );
qDebug( "%s", i18n("Could not import the following line:") + line );
//KMessageBox::error( this, i18n("Could not import the following line:") + line );
}

Loading…
Cancel
Save