summaryrefslogtreecommitdiffstats
path: root/src/editbookmarkdialog.cpp
diff options
context:
space:
mode:
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);
}