diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-29 16:27:29 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-31 22:18:23 +0900 |
| commit | 79daa6a12bd88ee9b3283d43e6a3bcd955d39cd1 (patch) | |
| tree | b576c84d85d824994f7fdaf8c5412475a5c7c185 /src/mergeresultwindow.cpp | |
| parent | 835702ea8d041b2521be63dfe0faf75ece29c7f7 (diff) | |
| download | kdiff3-79daa6a12bd88ee9b3283d43e6a3bcd955d39cd1.tar.gz kdiff3-79daa6a12bd88ee9b3283d43e6a3bcd955d39cd1.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 2065ffa4d02f8a0a799cb7907879ba184949b52c)
Diffstat (limited to 'src/mergeresultwindow.cpp')
| -rw-r--r-- | src/mergeresultwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mergeresultwindow.cpp b/src/mergeresultwindow.cpp index 8b38853..71c2f97 100644 --- a/src/mergeresultwindow.cpp +++ b/src/mergeresultwindow.cpp @@ -84,7 +84,7 @@ MergeResultWindow::MergeResultWindow( m_cursorYPos=0; m_bCursorOn = true; m_bCursorUpdate = false; - connect( &m_cursorTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT( slotCursorUpdate() ) ); + connect( &m_cursorTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT( slotCursorUpdate() ) ); m_cursorTimer.start( 500 /*ms*/, true /*single shot*/ ); m_selection.reset(); @@ -3068,7 +3068,7 @@ WindowTitleWidget::WindowTitleWidget(OptionDialog* pOptionDialog, TQWidget* pPar //m_pBrowseButton = new TQPushButton("..."); //pHLayout->addWidget( m_pBrowseButton, 0 ); - //connect( m_pBrowseButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotBrowseButtonClicked())); + //connect( m_pBrowseButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotBrowseButtonClicked())); m_pModifiedLabel = new TQLabel(i18n("[Modified]"),this); pHLayout->addWidget( m_pModifiedLabel ); |
