From: <dhu...@us...> - 2007-01-20 13:38:41
|
Revision: 206 http://svn.sourceforge.net/qcell/?rev=206&view=rev Author: dhubleizh Date: 2007-01-20 05:38:36 -0800 (Sat, 20 Jan 2007) Log Message: ----------- - last line bug Modified Paths: -------------- trunk/qcell/parsers/FQT/FQTParserPlugin.cpp Modified: trunk/qcell/parsers/FQT/FQTParserPlugin.cpp =================================================================== --- trunk/qcell/parsers/FQT/FQTParserPlugin.cpp 2007-01-20 13:00:59 UTC (rev 205) +++ trunk/qcell/parsers/FQT/FQTParserPlugin.cpp 2007-01-20 13:38:36 UTC (rev 206) @@ -39,7 +39,7 @@ // Basic sanity check lines = QString(content).split('\n'); // Check if there is pending '\n' to chop - if(lines.last().count() == 0) + if(lines.last().isEmpty()) { lines.removeLast(); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |