summaryrefslogtreecommitdiffstats
path: root/kgantt/kgantt/KGanttBarConfig.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kgantt/kgantt/KGanttBarConfig.cpp')
-rw-r--r--kgantt/kgantt/KGanttBarConfig.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kgantt/kgantt/KGanttBarConfig.cpp b/kgantt/kgantt/KGanttBarConfig.cpp
index d5faa208..ff5f4ee8 100644
--- a/kgantt/kgantt/KGanttBarConfig.cpp
+++ b/kgantt/kgantt/KGanttBarConfig.cpp
@@ -13,20 +13,20 @@
KGanttBarConfig::KGanttBarConfig(xQGanttBarView* barview,
- QWidget* parent,
+ TQWidget* parent,
const char * name, WFlags f)
- : QWidget(parent,name,f)
+ : TQWidget(parent,name,f)
{
_barview = barview;
KColorButton* b = new KColorButton(this);
- connect(b, SIGNAL(changed(const QColor&)),
- this, SLOT(changeBackground(const QColor&)));
+ connect(b, TQT_SIGNAL(changed(const TQColor&)),
+ this, TQT_SLOT(changeBackground(const TQColor&)));
}
-void KGanttBarConfig::changeBackground(const QColor& color) {
+void KGanttBarConfig::changeBackground(const TQColor& color) {
_barview->viewport()->setBackgroundColor(color);
}
#include "KGanttBarConfig.moc"