summaryrefslogtreecommitdiffstats
path: root/arts/gui/kde/kfader_impl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'arts/gui/kde/kfader_impl.cpp')
-rw-r--r--arts/gui/kde/kfader_impl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/arts/gui/kde/kfader_impl.cpp b/arts/gui/kde/kfader_impl.cpp
index a0caf7db..27a50191 100644
--- a/arts/gui/kde/kfader_impl.cpp
+++ b/arts/gui/kde/kfader_impl.cpp
@@ -34,7 +34,7 @@ using namespace std;
FaderIntMapper::FaderIntMapper(KFader_impl *impl, KFader *kp) :impl(impl)
{
- connect(kp, SIGNAL(valueChanged(int)), this, SLOT(valueChanged(int)));
+ connect(kp, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(valueChanged(int)));
}
void FaderIntMapper::valueChanged(int pos)
@@ -63,7 +63,7 @@ string KFader_impl::caption()
void KFader_impl::caption(const string& newText)
{
- _caption = QString::fromUtf8(newText.c_str());
+ _caption = TQString::fromUtf8(newText.c_str());
_kfader->setName(_caption.utf8().data());
}
@@ -77,7 +77,7 @@ void KFader_impl::color(const string& newColor)
_color = newColor;
if(strlen(_color.c_str()))
{
- QColor qc(_color.c_str());
+ TQColor qc(_color.c_str());
_kfader->setColor(qc);
}
}