[Ktutorial-commits] SF.net SVN: ktutorial:[226] trunk/ktutorial/ktutorial-editor
Status: Alpha
Brought to you by:
danxuliu
|
From: <dan...@us...> - 2010-03-31 16:28:01
|
Revision: 226
http://ktutorial.svn.sourceforge.net/ktutorial/?rev=226&view=rev
Author: danxuliu
Date: 2010-03-31 16:27:52 +0000 (Wed, 31 Mar 2010)
Log Message:
-----------
Fix compiler warnings.
Modified Paths:
--------------
trunk/ktutorial/ktutorial-editor/src/data/Reaction.cpp
trunk/ktutorial/ktutorial-editor/tests/unit/data/ReactionTest.cpp
Modified: trunk/ktutorial/ktutorial-editor/src/data/Reaction.cpp
===================================================================
--- trunk/ktutorial/ktutorial-editor/src/data/Reaction.cpp 2010-03-31 16:21:39 UTC (rev 225)
+++ trunk/ktutorial/ktutorial-editor/src/data/Reaction.cpp 2010-03-31 16:27:52 UTC (rev 226)
@@ -23,8 +23,8 @@
Reaction::Reaction(QObject* parent):
QObject(parent),
+ mTriggerType(OptionSelected),
mWaitFor(0),
- mTriggerType(OptionSelected),
mResponseType(NextStep) {
}
Modified: trunk/ktutorial/ktutorial-editor/tests/unit/data/ReactionTest.cpp
===================================================================
--- trunk/ktutorial/ktutorial-editor/tests/unit/data/ReactionTest.cpp 2010-03-31 16:21:39 UTC (rev 225)
+++ trunk/ktutorial/ktutorial-editor/tests/unit/data/ReactionTest.cpp 2010-03-31 16:27:52 UTC (rev 226)
@@ -60,6 +60,7 @@
}
bool equals(const WaitFor& waitFor) const {
+ Q_UNUSED(waitFor);
return false;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|