summaryrefslogtreecommitdiffstats
path: root/src/common/gui/purl_gui.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-29 16:42:37 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-29 16:48:53 +0900
commitc679361a50aee162491e7195f2bcfdbbf341dde5 (patch)
treec8ff90ba1810054b7e53a79649b0e33a0937e74f /src/common/gui/purl_gui.cpp
parenta8207be921513da0ccccf41e36e056736c2b8457 (diff)
downloadpiklab-c679361a50aee162491e7195f2bcfdbbf341dde5.tar.gz
piklab-c679361a50aee162491e7195f2bcfdbbf341dde5.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/common/gui/purl_gui.cpp')
-rw-r--r--src/common/gui/purl_gui.cpp8
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()));
}
//----------------------------------------------------------------------------