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) 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", ""); mValue += buf.replace("\n", "");
} }

@ -380,7 +380,7 @@ void ThemeMoodin::slotSetPixmap(const TQString& s)
} }
void ThemeMoodin::updatetqStatus() void ThemeMoodin::updateStatus()
{ {
TQPainter p; TQPainter p;
p.begin(mContainer); 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()); bitBlt(mContainer, r.x(), r.y(), mBG, r.x(), r.y(), r.width(), r.height());
if (mShowStatusText) if (mShowStatusText)
updatetqStatus(); updateStatus();
} }
#include "thememoodin.moc" #include "thememoodin.moc"

@ -122,7 +122,7 @@ private:
void paintEvent(TQPaintEvent* pe); void paintEvent(TQPaintEvent* pe);
void readSettings(); void readSettings();
void arrangeWidget(TQWidget* me, const int index); void arrangeWidget(TQWidget* me, const int index);
void updatetqStatus(); void updateStatus();
EffectWidget* createEffectWidget(TQWidget *parent, TQImage *image); EffectWidget* createEffectWidget(TQWidget *parent, TQImage *image);
}; };

Loading…
Cancel
Save