summaryrefslogtreecommitdiffstats
path: root/src/kchmsearchwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kchmsearchwindow.cpp')
-rw-r--r--src/kchmsearchwindow.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/kchmsearchwindow.cpp b/src/kchmsearchwindow.cpp
index be0122c..8d936c7 100644
--- a/src/kchmsearchwindow.cpp
+++ b/src/kchmsearchwindow.cpp
@@ -44,7 +44,7 @@ KCHMSearchWindow::KCHMSearchWindow( TQWidget * parent, const char * name, WFlags
labellayout->addStretch( 10 );
KCHMClickableLabel * helplink = new KCHMClickableLabel( i18n( "<a href=\"q\"><b>Help</b></a>"), this );
- connect( helplink, TQT_SIGNAL( clicked() ), this, TQT_SLOT( onHelpClicked() ) );
+ connect( helplink, TQ_SIGNAL( clicked() ), this, TQ_SLOT( onHelpClicked() ) );
helplink->setCursor( TQCursor( TQt::PointingHandCursor ) );
labellayout->addWidget ( helplink );
@@ -68,24 +68,24 @@ KCHMSearchWindow::KCHMSearchWindow( TQWidget * parent, const char * name, WFlags
m_searchList->setShowToolTips(true);
connect( searchButton,
- TQT_SIGNAL( clicked () ),
+ TQ_SIGNAL( clicked () ),
this,
- TQT_SLOT( onReturnPressed() ) );
+ TQ_SLOT( onReturnPressed() ) );
connect( m_searchQuery->lineEdit(),
- TQT_SIGNAL( returnPressed() ),
+ TQ_SIGNAL( returnPressed() ),
this,
- TQT_SLOT( onReturnPressed() ) );
+ TQ_SLOT( onReturnPressed() ) );
connect( m_searchList,
- TQT_SIGNAL( doubleClicked ( TQListViewItem *, const TQPoint &, int) ),
+ TQ_SIGNAL( doubleClicked ( TQListViewItem *, const TQPoint &, int) ),
this,
- TQT_SLOT( onDoubleClicked ( TQListViewItem *, const TQPoint &, int) ) );
+ TQ_SLOT( onDoubleClicked ( TQListViewItem *, const TQPoint &, int) ) );
connect( m_searchList,
- TQT_SIGNAL( contextMenuRequested( TQListViewItem *, const TQPoint& , int ) ),
+ TQ_SIGNAL( contextMenuRequested( TQListViewItem *, const TQPoint& , int ) ),
this,
- TQT_SLOT( slotContextMenuRequested ( TQListViewItem *, const TQPoint &, int ) ) );
+ TQ_SLOT( slotContextMenuRequested ( TQListViewItem *, const TQPoint &, int ) ) );
//layout->addSpacing (10);
layout->addWidget (m_searchList);