summaryrefslogtreecommitdiffstats
path: root/src/svnfrontend/propertiesdlg.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-12-29 16:51:28 +0900
committerMichele Calgaro <[email protected]>2023-12-29 16:51:28 +0900
commit9ebb061777b4fed6107d056528ff19932d1c0379 (patch)
treee6759e2a527bbabcd6d90e9a92adcd3b5bae738c /src/svnfrontend/propertiesdlg.cpp
parent70a9b1f3fb15c9725f1ad6ba5ffa4b3c1554e97c (diff)
downloadtdesvn-9ebb061777b4fed6107d056528ff19932d1c0379.tar.gz
tdesvn-9ebb061777b4fed6107d056528ff19932d1c0379.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/svnfrontend/propertiesdlg.cpp')
-rw-r--r--src/svnfrontend/propertiesdlg.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/svnfrontend/propertiesdlg.cpp b/src/svnfrontend/propertiesdlg.cpp
index f29686e..45b74b3 100644
--- a/src/svnfrontend/propertiesdlg.cpp
+++ b/src/svnfrontend/propertiesdlg.cpp
@@ -85,12 +85,12 @@ PropertiesDlg::PropertiesDlg(SvnItem*which, svn::Client*aClient, const svn::Revi
clearWState( WState_Polished );
// signals and slots connections
- connect( m_AddButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotAdd()));
- connect( m_ModifyButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotModify()));
- connect( m_DeleteButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotDelete()));
- connect(this,TQT_SIGNAL(helpClicked()),TQT_SLOT(slotHelp()));
- connect(m_PropertiesListview,TQT_SIGNAL(selectionChanged(TQListViewItem*)),this,TQT_SLOT(slotSelectionChanged(TQListViewItem*)));
-// connect(m_PropertiesListview,TQT_SIGNAL(executed(TQListViewItem*)),this,TQT_SLOT(slotSelectionExecuted(TQListViewItem*)));
+ connect( m_AddButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotAdd()));
+ connect( m_ModifyButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotModify()));
+ connect( m_DeleteButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotDelete()));
+ connect(this,TQ_SIGNAL(helpClicked()),TQ_SLOT(slotHelp()));
+ connect(m_PropertiesListview,TQ_SIGNAL(selectionChanged(TQListViewItem*)),this,TQ_SLOT(slotSelectionChanged(TQListViewItem*)));
+// connect(m_PropertiesListview,TQ_SIGNAL(executed(TQListViewItem*)),this,TQ_SLOT(slotSelectionExecuted(TQListViewItem*)));
if (!m_Client) {
m_PropertiesListview->setEnabled(false);