diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:39:55 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:39:55 +0000 |
commit | 0a6e0958c03e41c87b15557b6f407874f20c2f8d (patch) | |
tree | 2cdd58c4013b1be09cfcbb4ddae2b05712b9aeee /kalzium/src/isotope.h | |
parent | 83f9dfafc157ff7823804b3ff457b43d021a5b4b (diff) | |
download | tdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.tar.gz tdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1157642 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kalzium/src/isotope.h')
-rw-r--r-- | kalzium/src/isotope.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kalzium/src/isotope.h b/kalzium/src/isotope.h index feed345f..d32e8a5c 100644 --- a/kalzium/src/isotope.h +++ b/kalzium/src/isotope.h @@ -20,7 +20,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <qstring.h> +#include <tqstring.h> /** * @author Carsten Niehaus @@ -36,7 +36,7 @@ class Isotope double percentage, double weight, double halflife, - QString format, + TQString format, double alphadecay, double betaplusdecay, double betaminusdecay, @@ -45,8 +45,8 @@ class Isotope double betapluspercentage, double betaminuspercentage, double ecpercentage, - QString spin, - QString magmoment); + TQString spin, + TQString magmoment); bool seconds() const{ if ( m_format == "seconds" ) @@ -123,20 +123,20 @@ class Isotope return m_ecdecay; } - QString spin() const{ + TQString spin() const{ return m_spin; } - QString magmoment() const{ + TQString magmoment() const{ return m_magmoment; } /** - * @return the halflife as a QString. The format will be + * @return the halflife as a TQString. The format will be * appended, for example "seconds" or "years" depending * on the timeframe */ - QString halflifeAsString(); + TQString halflifeAsString(); /** * @return the percentage of the betaminus decay @@ -172,7 +172,7 @@ class Isotope * isotopes have half-lifes of billion of years. This simply * doesn't fit into a unsigned int or double */ - QString m_format; + TQString m_format; /** * the weight of the isotope @@ -214,12 +214,12 @@ class Isotope /** *spin and parity */ - QString m_spin; + TQString m_spin; /** * magnetic moment */ - QString m_magmoment; + TQString m_magmoment; /** * the percentage with which the istope decays as alpha-rays |