[Pikloops-svn] SF.net SVN: pikloops: [139] prog/trunk/src/mainwidgetpl.cpp
Brought to you by:
dionysos-sf
|
From: <dio...@us...> - 2007-10-11 14:53:35
|
Revision: 139
http://pikloops.svn.sourceforge.net/pikloops/?rev=139&view=rev
Author: dionysos-sf
Date: 2007-10-11 07:53:40 -0700 (Thu, 11 Oct 2007)
Log Message:
-----------
More cleanup
Modified Paths:
--------------
prog/trunk/src/mainwidgetpl.cpp
Modified: prog/trunk/src/mainwidgetpl.cpp
===================================================================
--- prog/trunk/src/mainwidgetpl.cpp 2007-10-11 14:39:48 UTC (rev 138)
+++ prog/trunk/src/mainwidgetpl.cpp 2007-10-11 14:53:40 UTC (rev 139)
@@ -115,16 +115,16 @@
tmpCode += "\n" ;
if ( loopValues->getCounterD() != -1 ) {
- tmpCode += QString("\tmovlw \tD'%1'\n").arg(loopValues->getCounterD(),0,10);
- tmpCode += QString(i18n("\tmovwf \tCounterD\n"));
+ tmpCode += QString("\tmovlw \tD'%1'\n").arg(loopValues->getCounterD(),0,10);
+ tmpCode += QString(i18n("\tmovwf \tCounterD\n"));
}
if ( loopValues->getCounterC() != -1 ) {
- tmpCode += QString("\tmovlw \tD'%1'\n").arg(loopValues->getCounterC(),0,10);
- tmpCode += QString(i18n("\tmovwf \tCounterC\n"));
+ tmpCode += QString("\tmovlw \tD'%1'\n").arg(loopValues->getCounterC(),0,10);
+ tmpCode += QString(i18n("\tmovwf \tCounterC\n"));
}
if ( loopValues->getCounterB() !=-1 ) {
- tmpCode += QString("\tmovlw \tD'%1'\n").arg(loopValues->getCounterB(),0,10);
- tmpCode += QString(i18n("\tmovwf \tCounterB\n"));
+ tmpCode += QString("\tmovlw \tD'%1'\n").arg(loopValues->getCounterB(),0,10);
+ tmpCode += QString(i18n("\tmovwf \tCounterB\n"));
}
tmpCode += QString("\tmovlw \tD'%1'\n").arg(loopValues->getCounterA(),0,10);
@@ -134,13 +134,13 @@
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.
|