diff options
author | Timothy Pearson <[email protected]> | 2011-12-18 18:13:16 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-18 18:13:16 -0600 |
commit | cf4b244e5708cb15a18d6eca89468ca3d31333ef (patch) | |
tree | baac85837ef30761a5d3690a2d2982c0800e89f6 | |
parent | a7d78d31f6988129f1e52dc986206604ae585c73 (diff) | |
download | ksplash-engine-moodin-cf4b244e5708cb15a18d6eca89468ca3d31333ef.tar.gz ksplash-engine-moodin-cf4b244e5708cb15a18d6eca89468ca3d31333ef.zip |
Rename old tq methods that no longer need a unique name
-rw-r--r-- | src/magiclabel.cpp | 2 | ||||
-rw-r--r-- | src/thememoodin.cpp | 4 | ||||
-rw-r--r-- | src/thememoodin.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/magiclabel.cpp b/src/magiclabel.cpp index 5b30252..6c7aac4 100644 --- a/src/magiclabel.cpp +++ b/src/magiclabel.cpp @@ -79,7 +79,7 @@ void MagicLabel::getCommandOutput() void MagicLabel::receivedStdout(KProcess *proc, char *buffer, int buflen) { - TQString buf = TQString::tqfromLatin1(buffer, buflen); + TQString buf = TQString::fromLatin1(buffer, buflen); mValue += buf.replace("\n", ""); } diff --git a/src/thememoodin.cpp b/src/thememoodin.cpp index 9c8f7ec..f623979 100644 --- a/src/thememoodin.cpp +++ b/src/thememoodin.cpp @@ -380,7 +380,7 @@ void ThemeMoodin::slotSetPixmap(const TQString& s) } -void ThemeMoodin::updatetqStatus() +void ThemeMoodin::updateStatus() { TQPainter p; p.begin(mContainer); @@ -413,7 +413,7 @@ void ThemeMoodin::paintEvent(TQPaintEvent* pe) bitBlt(mContainer, r.x(), r.y(), mBG, r.x(), r.y(), r.width(), r.height()); if (mShowStatusText) - updatetqStatus(); + updateStatus(); } #include "thememoodin.moc" diff --git a/src/thememoodin.h b/src/thememoodin.h index d607edf..cf7f285 100644 --- a/src/thememoodin.h +++ b/src/thememoodin.h @@ -122,7 +122,7 @@ private: void paintEvent(TQPaintEvent* pe); void readSettings(); void arrangeWidget(TQWidget* me, const int index); - void updatetqStatus(); + void updateStatus(); EffectWidget* createEffectWidget(TQWidget *parent, TQImage *image); }; |