diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-11 10:35:25 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-11 10:35:25 +0900 |
commit | 7e9d8ea45280ad6657796da9536ccf6218111f22 (patch) | |
tree | 67d57c480b89c5967466e39bf60f7e4f05434f15 /kate/snippets | |
parent | 1ecb90ecaf66e1cc8ddeacad21e71640477d9767 (diff) | |
download | tdeaddons-7e9d8ea45280ad6657796da9536ccf6218111f22.tar.gz tdeaddons-7e9d8ea45280ad6657796da9536ccf6218111f22.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kate/snippets')
-rw-r--r-- | kate/snippets/plugin_katesnippets.cpp | 24 |
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> |