From kde-commits Sun Jul 30 04:47:21 2006 From: Stefan Nikolaus Date: Sun, 30 Jul 2006 04:47:21 +0000 To: kde-commits Subject: branches/koffice/1.6/koffice/filters/kspread/csv Message-Id: <1154234841.484581.7085.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=115423485111149 SVN commit 567779 by nikolaus: Filters CSV Import. Fix the encoding. M +1 -1 csvimport.cc --- branches/koffice/1.6/koffice/filters/kspread/csv/csvimport.cc #567778:567779 @@ -142,7 +142,7 @@ { value += step; emit sigProgress(value); - const QString text( dialog->getText( row, col ) ); + const QString text( dialog->getText( row, col ).utf8() ); // ### FIXME: how to calculate the width of numbers (as they might not be in the right format) const double len = fm.width( text );