summaryrefslogtreecommitdiffstats
path: root/src/editbookmarkdialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:33:17 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:33:17 +0900
commit1bc48a6ae2706e13093955e8181ac2f58a7ec3ac (patch)
tree1d67fedde5ab6603080c8c786d55a1fcb44c45c4 /src/editbookmarkdialog.cpp
parent71d014f5e8c8816163fdfdf63fb20e73cd1870e4 (diff)
downloaddolphin-1bc48a6ae2706e13093955e8181ac2f58a7ec3ac.tar.gz
dolphin-1bc48a6ae2706e13093955e8181ac2f58a7ec3ac.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/editbookmarkdialog.cpp')
-rw-r--r--src/editbookmarkdialog.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/editbookmarkdialog.cpp b/src/editbookmarkdialog.cpp
index f326783..397deed 100644
--- a/src/editbookmarkdialog.cpp
+++ b/src/editbookmarkdialog.cpp
@@ -73,8 +73,8 @@ EditBookmarkDialog::EditBookmarkDialog(const TQString& title,
m_iconName = icon;
m_iconButton = new TQPushButton(SmallIcon(m_iconName), TQString(), grid);
m_iconButton->setSizePolicy(TQSizePolicy::Fixed, TQSizePolicy::Fixed);
- connect(m_iconButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(selectIcon()));
+ connect(m_iconButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(selectIcon()));
// create name widgets
new TQLabel(i18n("Name:"), grid);
@@ -93,8 +93,8 @@ EditBookmarkDialog::EditBookmarkDialog(const TQString& title,
TQPushButton* selectLocationButton = new TQPushButton(SmallIcon("folder"), TQString(), locationBox);
selectLocationButton->setSizePolicy(TQSizePolicy::Fixed, TQSizePolicy::Fixed);
- connect(selectLocationButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(selectLocation()));
+ connect(selectLocationButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(selectLocation()));
topLayout->addWidget(grid);
}