diff options
Diffstat (limited to 'src/common/gui/purl_gui.cpp')
-rw-r--r-- | src/common/gui/purl_gui.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/gui/purl_gui.cpp b/src/common/gui/purl_gui.cpp index fb7aacc..e936a99 100644 --- a/src/common/gui/purl_gui.cpp +++ b/src/common/gui/purl_gui.cpp @@ -77,7 +77,7 @@ PURL::Label::Label(const TQString &url, const TQString &text, TQWidget *parent, const char *name) : KURLLabel(url, text, parent, name) { - connect(this, TQT_SIGNAL(leftClickedURL()), TQT_SLOT(urlClickedSlot())); + connect(this, TQ_SIGNAL(leftClickedURL()), TQ_SLOT(urlClickedSlot())); } void PURL::Label::urlClickedSlot() @@ -103,12 +103,12 @@ void PURL::BaseWidget::init() TQHBoxLayout *top = new TQHBoxLayout(this, 0, 10); _edit = new KLineEdit(this); - connect(_edit, TQT_SIGNAL(textChanged(const TQString &)), TQT_SIGNAL(changed())); + connect(_edit, TQ_SIGNAL(textChanged(const TQString &)), TQ_SIGNAL(changed())); top->addWidget(_edit); TDEIconLoader loader; TQIconSet iconset = loader.loadIcon("document-open", TDEIcon::Toolbar); TQPushButton *button = new KPushButton(iconset, TQString(), this); - connect(button, TQT_SIGNAL(clicked()), TQT_SLOT(buttonClicked())); + connect(button, TQ_SIGNAL(clicked()), TQ_SLOT(buttonClicked())); top->addWidget(button); } @@ -138,7 +138,7 @@ void PURL::DirectoriesWidget::init(const TQString &defaultDir) { DirectoryWidget *edit = new DirectoryWidget(defaultDir); _editListBox = new EditListBox(1, edit, edit->lineEdit(), this, "directories_editlistbox"); - connect(_editListBox, TQT_SIGNAL(changed()), TQT_SIGNAL(changed())); + connect(_editListBox, TQ_SIGNAL(changed()), TQ_SIGNAL(changed())); } //---------------------------------------------------------------------------- |