[Pikloops-svn] SF.net SVN: pikloops: [134] prog/trunk/src/mainwidgetpl.cpp
Brought to you by:
dionysos-sf
|
From: <dio...@us...> - 2007-10-09 17:37:38
|
Revision: 134
http://pikloops.svn.sourceforge.net/pikloops/?rev=134&view=rev
Author: dionysos-sf
Date: 2007-10-09 10:37:40 -0700 (Tue, 09 Oct 2007)
Log Message:
-----------
Typo in generated code
Modified Paths:
--------------
prog/trunk/src/mainwidgetpl.cpp
Modified: prog/trunk/src/mainwidgetpl.cpp
===================================================================
--- prog/trunk/src/mainwidgetpl.cpp 2007-10-09 17:31:15 UTC (rev 133)
+++ prog/trunk/src/mainwidgetpl.cpp 2007-10-09 17:37:40 UTC (rev 134)
@@ -131,16 +131,16 @@
tmpCode += QString(i18n("\tmovwf \tCounterA\n\n"));
tmpCode += loopName ;
tmpCode += "\n" ;
- tmpCode += QString(i18n("\tdecfsz \tCounterA,1\n\tgoto \t%1 \n")).arg(loopName);
+ tmpCode += QString(i18n("\tdecfsz \tCounterA,1\n\tgoto \t%1\n")).arg(loopName);
if (loopValues->getCounterB()!=-1) {
- tmpCode += QString(i18n("\tdecfsz \tCounterB,1\n\tgoto \t%1 \n")).arg(loopName);
+ tmpCode += QString(i18n("\tdecfsz \tCounterB,1\n\tgoto \t%1\n")).arg(loopName);
}
if (loopValues->getCounterC()!=-1) {
- tmpCode += QString(i18n("\tdecfsz \tCounterC,1\n\tgoto \t%1 \n")).arg(loopName);
+ tmpCode += QString(i18n("\tdecfsz \tCounterC,1\n\tgoto \t%1\n")).arg(loopName);
}
if (loopValues->getCounterD()!=-1) {
- tmpCode += QString(i18n("\tdecfsz \tCounterD,1\n\tgoto \t%1 \n")).arg(loopName);
+ tmpCode += QString(i18n("\tdecfsz \tCounterD,1\n\tgoto \t%1\n")).arg(loopName);
}
tmpCode += QString("\treturn");
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|