diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 10:33:17 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-07 19:57:28 +0900 |
| commit | f03ddc53e2767bb7f88374996bb192275de12e51 (patch) | |
| tree | 9612fb1e8b8af0874506f53c77b2a9b748f31bb9 /src/editbookmarkdialog.cpp | |
| parent | a822e3e4661711452c3cb35d5efaae67c56a071a (diff) | |
| download | dolphin-f03ddc53.tar.gz dolphin-f03ddc53.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 1bc48a6ae2706e13093955e8181ac2f58a7ec3ac)
Diffstat (limited to 'src/editbookmarkdialog.cpp')
| -rw-r--r-- | src/editbookmarkdialog.cpp | 8 |
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); } |
