summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/magiclabel.cpp2
-rw-r--r--src/thememoodin.cpp4
-rw-r--r--src/thememoodin.h2
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);
};