summaryrefslogtreecommitdiffstats
path: root/kalzium/src/molcalcwidget.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:58:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:58:43 -0600
commit2d7b541a4e0095d40e37aaefbf9c4a9b9d149302 (patch)
tree628c1676b27475e583cfd0c2105bb41b646654bf /kalzium/src/molcalcwidget.cpp
parent6c3f7a55fb7888efc80a7350ef0c2f46ee02baa3 (diff)
downloadtdeedu-2d7b541a4e0095d40e37aaefbf9c4a9b9d149302.tar.gz
tdeedu-2d7b541a4e0095d40e37aaefbf9c4a9b9d149302.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 6c3f7a55fb7888efc80a7350ef0c2f46ee02baa3.
Diffstat (limited to 'kalzium/src/molcalcwidget.cpp')
-rw-r--r--kalzium/src/molcalcwidget.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/kalzium/src/molcalcwidget.cpp b/kalzium/src/molcalcwidget.cpp
index 10ad8246..f9fd90ce 100644
--- a/kalzium/src/molcalcwidget.cpp
+++ b/kalzium/src/molcalcwidget.cpp
@@ -37,7 +37,7 @@
#include <ktoolbar.h>
#include <tqlabel.h>
-#include <layout.h>
+#include <tqlayout.h>
#include <tqtooltip.h>
@@ -82,16 +82,16 @@ void MolcalcWidget::updateUI()
for ( ; it != itEnd; ++it ) {
// Update the resultLabel
str += i18n( "For example: \"1 Carbon\" or \"3 Oxygen\"", "%1 %2\n" )
- .arg( (*it)->count() )
- .arg( (*it)->element()->elname() );
+ .tqarg( (*it)->count() )
+ .tqarg( (*it)->element()->elname() );
complexString
+= i18n( "For example: 1 Seaborgium. Cumulative Mass: 263.119 u (39.25%)",
"%1 %2. Cumulative Mass: %3 u (%4%)\n" )
- .arg( (*it)->count() )
- .arg( (*it)->element()->elname() )
- .arg( (*it)->count() * (*it)->element()->mass() )
- .arg( KalziumUtils::strippedValue( (( (*it)->count() * (*it)->element()->mass() )
+ .tqarg( (*it)->count() )
+ .tqarg( (*it)->element()->elname() )
+ .tqarg( (*it)->count() * (*it)->element()->mass() )
+ .tqarg( KalziumUtils::strippedValue( (( (*it)->count() * (*it)->element()->mass() )
/ m_mass ) * 100 ) );
}
resultLabel->setText( str );
@@ -100,7 +100,7 @@ void MolcalcWidget::updateUI()
resultComposition->setText( compositionString(m_elementMap) );
// The mass
- resultMass->setText( i18n( "Molecular mass: %1 u" ).arg( m_mass ) );
+ resultMass->setText( i18n( "Molecular mass: %1 u" ).tqarg( m_mass ) );
TQToolTip::add( resultMass, complexString );
TQToolTip::add( resultComposition, complexString );
@@ -126,8 +126,8 @@ TQString MolcalcWidget::compositionString( ElementCountMap &_map )
ElementCountMap::Iterator itEnd = _map.end();
for (; it != itEnd; ++it) {
str += i18n( "%1<sub>%2</sub> " )
- .arg( (*it)->element()->symbol() )
- .arg( (*it)->count() );
+ .tqarg( (*it)->element()->symbol() )
+ .tqarg( (*it)->count() );
}
return str;