]> Git trees. - libqmvoc.git/commitdiff
add support for the three percentage-values
authorCarsten Niehaus <cniehaus@gmx.de>
Sun, 24 Jul 2005 14:19:48 +0000 (14:19 +0000)
committerCarsten Niehaus <cniehaus@gmx.de>
Sun, 24 Jul 2005 14:19:48 +0000 (14:19 +0000)
svn path=/trunk/KDE/kdeedu/kalzium/src/isotope.h; revision=438154

kalzium/src/isotope.cpp
kalzium/src/isotope.h

index 028155c142fd371894018107b154bee48df82d69..bb3d541910421152cf056287734bd2306b626b62 100644 (file)
@@ -22,7 +22,7 @@
 #include <kdebug.h>
 #include <klocale.h>
 
-Isotope::Isotope(  int neutrons, double percentage, double weight, double halflife, QString format, bool alphadecay, bool betaplusdecay, bool betaminusdecay, bool ecdecay, double decayenergy, QString spin, QString magmoment )
+Isotope::Isotope( int neutrons, double percentage, double weight, double halflife, QString format, bool alphadecay, bool betaplusdecay, bool betaminusdecay, double alphapercentage, double betaminuspercentage, double betapluspercentage, bool ecdecay, double decayenergy, QString spin, QString magmoment)
 {
        m_neutrons = neutrons;
        m_percentage = percentage;
index 88c6a72ff52fdfb378540d732148581df2143f0f..5051c669e51d32ac77fabb94add38b4ad83145f5 100644 (file)
@@ -31,7 +31,7 @@
 class Isotope
 {
        public:
-               Isotope( int neutrons, double percentage, double weight, double halflife, QString format, bool alphadecay, bool betaplusdecay, bool betaminusdecay, bool ecdecay, double decayenergy, QString spin, QString magmoment);
+               Isotope( int neutrons, double percentage, double weight, double halflife, QString format, bool alphadecay, bool betaplusdecay, bool betaminusdecay, double alphapercentage, double betaminuspercentage, double betapluspercentage, bool ecdecay, double decayenergy, QString spin, QString magmoment);
 
                bool seconds() const{
                        if ( m_format == "seconds" )