Revision: 376
http://ktutorial.svn.sourceforge.net/ktutorial/?rev=376&view=rev
Author: danxuliu
Date: 2012-08-20 12:24:59 +0000 (Mon, 20 Aug 2012)
Log Message:
-----------
Fix Krazy2 foreach issues.
Modified Paths:
--------------
trunk/ktutorial/ktutorial-editor/src/view/StepDataWidget.cpp
Modified: trunk/ktutorial/ktutorial-editor/src/view/StepDataWidget.cpp
===================================================================
--- trunk/ktutorial/ktutorial-editor/src/view/StepDataWidget.cpp 2012-08-20 12:23:38 UTC (rev 375)
+++ trunk/ktutorial/ktutorial-editor/src/view/StepDataWidget.cpp 2012-08-20 12:24:59 UTC (rev 376)
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2010-2011 by Daniel Calviño Sánchez *
+ * Copyright (C) 2010-2012 by Daniel Calviño Sánchez *
* dan...@gm... *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -77,7 +77,7 @@
QStringList unusedStepIds;
- foreach (QString nextStepId, nextStepIds) {
+ foreach (const QString& nextStepId, nextStepIds) {
if (!usedStepIds.contains(nextStepId)) {
unusedStepIds.append(nextStepId);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|