summaryrefslogtreecommitdiffstats
path: root/kate/snippets/plugin_katesnippets.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kate/snippets/plugin_katesnippets.cpp')
-rw-r--r--kate/snippets/plugin_katesnippets.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/kate/snippets/plugin_katesnippets.cpp b/kate/snippets/plugin_katesnippets.cpp
index f6c173e..5249a44 100644
--- a/kate/snippets/plugin_katesnippets.cpp
+++ b/kate/snippets/plugin_katesnippets.cpp
@@ -35,29 +35,29 @@ KatePluginSnippetsView::KatePluginSnippetsView(Kate::MainWindow *w, TQWidget *do
//<make connections>
connect (
- lvSnippets, TQT_SIGNAL( selectionChanged(TQListViewItem *) ),
- this, TQT_SLOT( slot_lvSnippetsSelectionChanged(TQListViewItem *) )
+ lvSnippets, TQ_SIGNAL( selectionChanged(TQListViewItem *) ),
+ this, TQ_SLOT( slot_lvSnippetsSelectionChanged(TQListViewItem *) )
);
connect (
- lvSnippets, TQT_SIGNAL( doubleClicked (TQListViewItem *) ),
- this, TQT_SLOT( slot_lvSnippetsClicked(TQListViewItem *) )
+ lvSnippets, TQ_SIGNAL( doubleClicked (TQListViewItem *) ),
+ this, TQ_SLOT( slot_lvSnippetsClicked(TQListViewItem *) )
);
connect (
- lvSnippets, TQT_SIGNAL( itemRenamed(TQListViewItem *, int, const TQString &) ),
- this, TQT_SLOT( slot_lvSnippetsItemRenamed(TQListViewItem *, int, const TQString &) )
+ lvSnippets, TQ_SIGNAL( itemRenamed(TQListViewItem *, int, const TQString &) ),
+ this, TQ_SLOT( slot_lvSnippetsItemRenamed(TQListViewItem *, int, const TQString &) )
);
connect (
- btnNew, TQT_SIGNAL( clicked () ),
- this, TQT_SLOT( slot_btnNewClicked() )
+ btnNew, TQ_SIGNAL( clicked () ),
+ this, TQ_SLOT( slot_btnNewClicked() )
);
connect (
- btnSave, TQT_SIGNAL( clicked () ),
- this, TQT_SLOT( slot_btnSaveClicked() )
+ btnSave, TQ_SIGNAL( clicked () ),
+ this, TQ_SLOT( slot_btnSaveClicked() )
);
connect (
- btnDelete, TQT_SIGNAL( clicked () ),
- this, TQT_SLOT( slot_btnDeleteClicked() )
+ btnDelete, TQ_SIGNAL( clicked () ),
+ this, TQ_SLOT( slot_btnDeleteClicked() )
);
//</make connections>