diff options
author | Timothy Pearson <[email protected]> | 2012-05-03 19:30:09 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-05-03 19:30:09 -0500 |
commit | 62777d2782c7fa738eb047eff175785fc2cd24ff (patch) | |
tree | 23af9c07140031be0d630cb78f7b27e684eef6ab | |
parent | 14ba7d8af6ef7248dcd3eb85ae977950d1758600 (diff) | |
download | kbarcode-62777d2782c7fa738eb047eff175785fc2cd24ff.tar.gz kbarcode-62777d2782c7fa738eb047eff175785fc2cd24ff.zip |
Fix FTBFS
-rw-r--r-- | kbarcode/csvimportdlg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kbarcode/csvimportdlg.cpp b/kbarcode/csvimportdlg.cpp index 6b07a7b..b5c6efa 100644 --- a/kbarcode/csvimportdlg.cpp +++ b/kbarcode/csvimportdlg.cpp @@ -374,7 +374,7 @@ void CSVImportDlg::accept() TQSqlQuery query; if( !query.exec( line ) ) - tqDebug( "%s", i18n("Could not import the following line:") + line ); + tqDebug( "%s", (i18n("Could not import the following line:") + line).ascii() ); //KMessageBox::error( this, i18n("Could not import the following line:") + line ); } |