[Kst] branches/work/kst/hierarchy/kst/src/libkstmath

Eli Fidler eli at staikos.net
Thu Dec 7 19:10:00 CET 2006


SVN commit 611333 by fidler:

don't shadow the parameter e


 M  +3 -3      kstcplugin.cpp  


--- branches/work/kst/hierarchy/kst/src/libkstmath/kstcplugin.cpp #611332:611333
@@ -41,15 +41,15 @@
 }
 
 
-KstCPlugin::KstCPlugin(const QDomElement& e)
-: KstDataObject(e) {
+KstCPlugin::KstCPlugin(const QDomElement& pluginElement)
+: KstDataObject(pluginElement) {
   QString pluginName;
 
   _inStringCnt = 0;
   _outStringCnt = 0;
   commonConstructor();
 
-  QDomNode n = e.firstChild();
+  QDomNode n = pluginElement.firstChild();
 
   while (!n.isNull()) {
     QDomElement e = n.toElement();


More information about the Kst mailing list