diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:47:36 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:47:36 -0600 |
commit | 97d1732e257f8700488d7ca1660ae7eba8fc6065 (patch) | |
tree | 4c6397ed2c1dd6f7c3354b5b87f313547d92a35f /katomic/molek.cpp | |
parent | 9c27a1a03e02fd53aedc1a182444b35fd8e14967 (diff) | |
download | tdegames-97d1732e257f8700488d7ca1660ae7eba8fc6065.tar.gz tdegames-97d1732e257f8700488d7ca1660ae7eba8fc6065.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'katomic/molek.cpp')
-rw-r--r-- | katomic/molek.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/katomic/molek.cpp b/katomic/molek.cpp index 6731962f..4a0562c2 100644 --- a/katomic/molek.cpp +++ b/katomic/molek.cpp @@ -62,7 +62,7 @@ void Molek::load (const KSimpleConfig& config) if (value.isEmpty()) break; - current.obj = value.tqat(0).latin1(); + current.obj = value.at(0).latin1(); value = value.mid(2); if (value.isNull()) value = ""; @@ -82,7 +82,7 @@ void Molek::load (const KSimpleConfig& config) line = config.readEntry(key); for (int i = 0; i < MOLEK_SIZE; i++) - molek[i][j] = atom2int(line.tqat(i).latin1()); + molek[i][j] = atom2int(line.at(i).latin1()); } mname = i18n(config.readEntry("Name", I18N_NOOP("Noname")).latin1()); @@ -103,12 +103,12 @@ void Molek::load (const KSimpleConfig& config) height++; width++; - tqrepaint (); + repaint (); } void Molek::paintEvent( TQPaintEvent * ) { - TQString st = i18n("Level: %1").tqarg(level); + TQString st = i18n("Level: %1").arg(level); TQPainter paint (this); paint.setPen (TQColor (190, 190, 190)); |