Rename old tq methods that no longer need a unique name

pull/1/head
Timothy Pearson 13 years ago
parent a7d78d31f6
commit cf4b244e57

@ -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", "");
}

@ -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"

@ -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);
};

Loading…
Cancel
Save