summaryrefslogtreecommitdiffstats
path: root/src/common/gui/dialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/gui/dialog.cpp')
-rw-r--r--src/common/gui/dialog.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/common/gui/dialog.cpp b/src/common/gui/dialog.cpp
index 554f364..b865edf 100644
--- a/src/common/gui/dialog.cpp
+++ b/src/common/gui/dialog.cpp
@@ -28,7 +28,7 @@ Dialog::Dialog(TQWidget *parent, const char *name, bool modal,
TQWidget *main = new TQWidget(this);
setMainWidget(main);
- TQTimer::singleShot(0, this, TQT_SLOT(updateSize()));
+ TQTimer::singleShot(0, this, TQ_SLOT(updateSize()));
}
Dialog::Dialog(DialogType type, const TQString &caption, int buttonMask, ButtonCode defaultButton,
@@ -38,7 +38,7 @@ Dialog::Dialog(DialogType type, const TQString &caption, int buttonMask, ButtonC
{
PBusyCursor::start();
Q_ASSERT(name);
- TQTimer::singleShot(0, this, TQT_SLOT(updateSize()));
+ TQTimer::singleShot(0, this, TQ_SLOT(updateSize()));
}
Dialog::~Dialog()
@@ -76,7 +76,7 @@ TreeListDialog::TreeListDialog(TQWidget *parent, const char *name, bool modal,
Splitter *splitter = new Splitter(widths,TQt::Horizontal, mainWidget(), name);
top->addWidget(splitter);
_listView = new TDEListView(splitter);
- connect(_listView, TQT_SIGNAL(currentChanged(TQListViewItem *)), TQT_SLOT(currentChanged(TQListViewItem *)));
+ connect(_listView, TQ_SIGNAL(currentChanged(TQListViewItem *)), TQ_SLOT(currentChanged(TQListViewItem *)));
_listView->setAllColumnsShowFocus(true);
_listView->setRootIsDecorated(true);
_listView->setSorting(0);
@@ -91,7 +91,7 @@ TreeListDialog::TreeListDialog(TQWidget *parent, const char *name, bool modal,
_label = new TQLabel(_frame);
_titleBox->addWidget(_label);
_stack = new TQWidgetStack(_frame);
- connect(_stack, TQT_SIGNAL(aboutToShow(TQWidget *)), TQT_SIGNAL(aboutToShowPage(TQWidget *)));
+ connect(_stack, TQ_SIGNAL(aboutToShow(TQWidget *)), TQ_SIGNAL(aboutToShowPage(TQWidget *)));
vbox->addWidget(_stack);
vbox->addStretch(1);
}
@@ -111,7 +111,7 @@ TQWidget *TreeListDialog::addPage(const TQStringList &labels)
}
if ( item==0 ) {
page = new TQWidget(_stack);
- connect(page, TQT_SIGNAL(destroyed(TQObject *)), TQT_SLOT(pageDestroyed(TQObject *)));
+ connect(page, TQ_SIGNAL(destroyed(TQObject *)), TQ_SLOT(pageDestroyed(TQObject *)));
_stack->addWidget(page);
item = new Item(labels[0], page, labels[0], _listView);
item->setOpen(true);
@@ -130,7 +130,7 @@ TQWidget *TreeListDialog::addPage(const TQStringList &labels)
}
if ( item==0 ) {
page = new TQWidget(_stack);
- connect(page, TQT_SIGNAL(destroyed(TQObject *)), TQT_SLOT(pageDestroyed(TQObject *)));
+ connect(page, TQ_SIGNAL(destroyed(TQObject *)), TQ_SLOT(pageDestroyed(TQObject *)));
_stack->addWidget(page);
item = new Item(labels[i], page, labels[i], parent);
item->setOpen(true);