|
From: Gustavo P. B. <gb...@us...> - 2005-04-02 20:15:00
|
Update of /cvsroot/kimageprocess/kimageprocess/src/libkimageprocess In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17516/libkimageprocess Modified Files: ktfeaturemanager.cpp ktmethod.cpp ktmethodmanager.cpp Log Message: More compilation warnings removed. Index: ktmethodmanager.cpp =================================================================== RCS file: /cvsroot/kimageprocess/kimageprocess/src/libkimageprocess/ktmethodmanager.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- ktmethodmanager.cpp 2 Apr 2005 18:15:03 -0000 1.6 +++ ktmethodmanager.cpp 2 Apr 2005 20:14:52 -0000 1.7 @@ -122,7 +122,7 @@ QDomNodeList groups = node.childNodes(); - for (int i=0; i < groups.count(); ++i) + for (unsigned int i=0; i < groups.count(); ++i) { if (groups.item(i).nodeName() == "ActiveMethod") { Index: ktfeaturemanager.cpp =================================================================== RCS file: /cvsroot/kimageprocess/kimageprocess/src/libkimageprocess/ktfeaturemanager.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- ktfeaturemanager.cpp 2 Apr 2005 18:09:34 -0000 1.7 +++ ktfeaturemanager.cpp 2 Apr 2005 20:14:52 -0000 1.8 @@ -188,7 +188,7 @@ QDomNodeList groups = node.childNodes(); - for (int i=0; i < groups.count(); ++i) + for (unsigned int i=0; i < groups.count(); ++i) { if (groups.item(i).nodeName() == "FeatureGroup") { Index: ktmethod.cpp =================================================================== RCS file: /cvsroot/kimageprocess/kimageprocess/src/libkimageprocess/ktmethod.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- ktmethod.cpp 23 Mar 2005 20:50:35 -0000 1.3 +++ ktmethod.cpp 2 Apr 2005 20:14:52 -0000 1.4 @@ -54,6 +54,7 @@ void *KTMethod::data(int direction) const { + Q_UNUSED(direction); return 0; } |