diff options
author | Michele Calgaro <[email protected]> | 2024-01-11 10:35:25 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-13 20:23:16 +0900 |
commit | e234565531cd8c11949cc6aecf16179e75312458 (patch) | |
tree | 90b0cb6c9f6c2a04712bbfb73b531275d4f63976 /kate/snippets | |
parent | be3456c5d953fb877340a51b2ef699be6b3c7c02 (diff) | |
download | tdeaddons-e234565531cd8c11949cc6aecf16179e75312458.tar.gz tdeaddons-e234565531cd8c11949cc6aecf16179e75312458.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 7e9d8ea45280ad6657796da9536ccf6218111f22)
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> |