summaryrefslogtreecommitdiffstats
path: root/src/tabwidget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tabwidget.cpp')
-rw-r--r--src/tabwidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tabwidget.cpp b/src/tabwidget.cpp
index 405c368..d9064e4 100644
--- a/src/tabwidget.cpp
+++ b/src/tabwidget.cpp
@@ -42,7 +42,7 @@ TabWidget::TabWidget(TQWidget* pParent, const char* szName) :
m_pMenu = new TQPopupMenu(this);
// Set the current tab based on the menu selection
- connect(m_pMenu, SIGNAL(activated(int)), this, SLOT(setCurrentPage(int)));
+ connect(m_pMenu, TQ_SIGNAL(activated(int)), this, TQ_SLOT(setCurrentPage(int)));
// Create a button at the top-right corner of the tab widget
m_pButton = new TQToolButton(this);
@@ -52,7 +52,7 @@ TabWidget::TabWidget(TQWidget* pParent, const char* szName) :
setCornerWidget(m_pButton, TopRight);
// Show the popup-menu when the button is clicked
- connect(m_pButton, SIGNAL(clicked()), this, SLOT(slotShowTabList()));
+ connect(m_pButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotShowTabList()));
}
/**