diff options
author | Michele Calgaro <[email protected]> | 2024-01-02 11:37:05 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-06 19:52:23 +0900 |
commit | ce3ab44510bc56b6d1e8e25663aedee8f4a0ccd1 (patch) | |
tree | b6897028e51844a0aeaafefc499fe4c213660b6f /libk3b/tools/k3blistview.cpp | |
parent | 6a101aa2ef54f02a292d6c28f23e2554a72e2bce (diff) | |
download | k3b-ce3ab44510bc56b6d1e8e25663aedee8f4a0ccd1.tar.gz k3b-ce3ab44510bc56b6d1e8e25663aedee8f4a0ccd1.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 61b79fc39298cb8646cee439dc032d5bf0169063)
Diffstat (limited to 'libk3b/tools/k3blistview.cpp')
-rw-r--r-- | libk3b/tools/k3blistview.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/libk3b/tools/k3blistview.cpp b/libk3b/tools/k3blistview.cpp index 66ab37c..8d22df8 100644 --- a/libk3b/tools/k3blistview.cpp +++ b/libk3b/tools/k3blistview.cpp @@ -552,8 +552,8 @@ K3bListView::K3bListView( TQWidget* parent, const char* name ) { d = new Private; - connect( header(), TQT_SIGNAL( sizeChange( int, int, int ) ), - this, TQT_SLOT( updateEditorSize() ) ); + connect( header(), TQ_SIGNAL( sizeChange( int, int, int ) ), + this, TQ_SLOT( updateEditorSize() ) ); m_editorButton = 0; m_editorComboBox = 0; @@ -709,8 +709,8 @@ void K3bListView::prepareButton( K3bListViewItem*, int ) { if( !m_editorButton ) { m_editorButton = new TQPushButton( viewport() ); - connect( m_editorButton, TQT_SIGNAL(clicked()), - this, TQT_SLOT(slotEditorButtonClicked()) ); + connect( m_editorButton, TQ_SIGNAL(clicked()), + this, TQ_SLOT(slotEditorButtonClicked()) ); } // TODO: do some useful things @@ -724,8 +724,8 @@ TQWidget* K3bListView::prepareEditor( K3bListViewItem* item, int col ) case K3bListViewItem::COMBO: if( !m_editorComboBox ) { m_editorComboBox = new TQComboBox( viewport() ); - connect( m_editorComboBox, TQT_SIGNAL(activated(const TQString&)), - this, TQT_SLOT(slotEditorComboBoxActivated(const TQString&)) ); + connect( m_editorComboBox, TQ_SIGNAL(activated(const TQString&)), + this, TQ_SLOT(slotEditorComboBoxActivated(const TQString&)) ); m_editorComboBox->installEventFilter( this ); } m_editorComboBox->clear(); @@ -770,8 +770,8 @@ TQWidget* K3bListView::prepareEditor( K3bListViewItem* item, int col ) if( !m_editorSpinBox ) { m_editorSpinBox = new TQSpinBox( viewport() ); d->spinBoxLineEdit = static_cast<TQLineEdit*>( m_editorSpinBox->child( 0, "TQLineEdit" ) ); - connect( m_editorSpinBox, TQT_SIGNAL(valueChanged(int)), - this, TQT_SLOT(slotEditorSpinBoxValueChanged(int)) ); + connect( m_editorSpinBox, TQ_SIGNAL(valueChanged(int)), + this, TQ_SLOT(slotEditorSpinBoxValueChanged(int)) ); // m_editorSpinBox->installEventFilter( this ); d->spinBoxLineEdit->installEventFilter( this ); } @@ -783,8 +783,8 @@ TQWidget* K3bListView::prepareEditor( K3bListViewItem* item, int col ) if( !m_editorMsfEdit ) { m_editorMsfEdit = new K3bMsfEdit( viewport() ); d->msfEditLineEdit = static_cast<TQLineEdit*>( m_editorMsfEdit->child( 0, "TQLineEdit" ) ); - connect( m_editorMsfEdit, TQT_SIGNAL(valueChanged(int)), - this, TQT_SLOT(slotEditorMsfEditValueChanged(int)) ); + connect( m_editorMsfEdit, TQ_SIGNAL(valueChanged(int)), + this, TQ_SLOT(slotEditorMsfEditValueChanged(int)) ); // m_editorMsfEdit->installEventFilter( this ); d->msfEditLineEdit->installEventFilter( this ); } |