summaryrefslogtreecommitdiffstats
path: root/smb4k/searchdlg/smb4ksearchdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'smb4k/searchdlg/smb4ksearchdialog.cpp')
-rw-r--r--smb4k/searchdlg/smb4ksearchdialog.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/smb4k/searchdlg/smb4ksearchdialog.cpp b/smb4k/searchdlg/smb4ksearchdialog.cpp
index f13c21e..c9b4612 100644
--- a/smb4k/searchdlg/smb4ksearchdialog.cpp
+++ b/smb4k/searchdlg/smb4ksearchdialog.cpp
@@ -47,8 +47,8 @@ Smb4KSearchDialog::Smb4KSearchDialog( TQWidget *parent, const char *name )
// Tool bar
m_tool_bar = new TDEToolBar( this, "SearchDialogToolBar", true, true );
- m_tool_bar->insertCombo( TQStringList(), Combo, true, TQT_SIGNAL( returnPressed() ),
- this, TQT_SLOT( slotReturnPressed() ), true,
+ m_tool_bar->insertCombo( TQStringList(), Combo, true, TQ_SIGNAL( returnPressed() ),
+ this, TQ_SLOT( slotReturnPressed() ), true,
i18n( "Enter the search string here." ), -1, Combo );
m_tool_bar->setItemAutoSized( Combo, true );
@@ -70,17 +70,17 @@ Smb4KSearchDialog::Smb4KSearchDialog( TQWidget *parent, const char *name )
m_search_string = TQString();
// Connections:
- connect( m_tool_bar->getCombo( Combo ), TQT_SIGNAL( textChanged( const TQString & ) ),
- this, TQT_SLOT( slotTextChanged( const TQString & ) ) );
+ connect( m_tool_bar->getCombo( Combo ), TQ_SIGNAL( textChanged( const TQString & ) ),
+ this, TQ_SLOT( slotTextChanged( const TQString & ) ) );
- connect( m_tool_bar, TQT_SIGNAL( pressed( int ) ),
- this, TQT_SLOT( slotButtonPressed( int ) ) );
+ connect( m_tool_bar, TQ_SIGNAL( pressed( int ) ),
+ this, TQ_SLOT( slotButtonPressed( int ) ) );
- connect( m_list_view, TQT_SIGNAL( clicked( TQListViewItem * ) ),
- this, TQT_SLOT( slotItemClicked( TQListViewItem * ) ) );
+ connect( m_list_view, TQ_SIGNAL( clicked( TQListViewItem * ) ),
+ this, TQ_SLOT( slotItemClicked( TQListViewItem * ) ) );
- connect( m_list_view, TQT_SIGNAL( selectionChanged( TQListViewItem * ) ),
- this, TQT_SLOT( slotSelectionChanged( TQListViewItem * ) ) );
+ connect( m_list_view, TQ_SIGNAL( selectionChanged( TQListViewItem * ) ),
+ this, TQ_SLOT( slotSelectionChanged( TQListViewItem * ) ) );
}
@@ -98,7 +98,7 @@ const TQString &Smb4KSearchDialog::searchString()
/////////////////////////////////////////////////////////////////////////////
-// TQT_SLOT IMPLEMENTATIONS
+// SLOT IMPLEMENTATIONS
/////////////////////////////////////////////////////////////////////////////
void Smb4KSearchDialog::slotReturnPressed()