]> Git trees. - libqmvoc.git/commitdiff
Use the new stuff in the test
authorCarsten Niehaus <cniehaus@gmx.de>
Sun, 3 Feb 2008 15:52:24 +0000 (15:52 +0000)
committerCarsten Niehaus <cniehaus@gmx.de>
Sun, 3 Feb 2008 15:52:24 +0000 (15:52 +0000)
svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=770393

libscience/tests/spectrumreadingtests.cpp

index fa3e94e78367800ddf8cf19fb7620d127a998cdf..b7891e298a978c072cddd8b98ed4efa9cdc606f7 100644 (file)
@@ -42,10 +42,10 @@ int main(int argc, char *argv[])
 
     qDebug() << "Found " << v.count() << " isotopes.";
 
-    foreach( Spectrum* i, v ){
-        if ( i )
+    foreach( Spectrum* s, v ){
+        if ( s )
         {
-                //kDebug() << "   Isotope of " << i->parentElementSymbol() << " with a mass of " << i->mass();
+                qDebug() << "   Spectrum of element " << s->parentElementNumber();
         }
     }