diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-13 12:34:35 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-13 12:43:12 +0900 |
| commit | c616fab9053b07ed30508ab714de876409d82653 (patch) | |
| tree | 02b8b0fd20d25a2607a2173186a5e4acd016cb62 /kpovmodeler/pmtreeview.cpp | |
| parent | 7cf662aaa0828773212e35d6842cffd0aa2c509f (diff) | |
| download | tdegraphics-c616fab9053b07ed30508ab714de876409d82653.tar.gz tdegraphics-c616fab9053b07ed30508ab714de876409d82653.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kpovmodeler/pmtreeview.cpp')
| -rw-r--r-- | kpovmodeler/pmtreeview.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kpovmodeler/pmtreeview.cpp b/kpovmodeler/pmtreeview.cpp index d6597b97..99499d83 100644 --- a/kpovmodeler/pmtreeview.cpp +++ b/kpovmodeler/pmtreeview.cpp @@ -79,12 +79,12 @@ PMTreeView::PMTreeView( PMPart* part, TQWidget* parent /*= 0*/, setFocusPolicy( TQWidget::WheelFocus ); setAcceptDrops( true ); - connect( part, TQT_SIGNAL( refresh( ) ), TQT_SLOT( slotRefresh( ) ) ); - connect( part, TQT_SIGNAL( objectChanged( PMObject*, const int, TQObject* ) ), - TQT_SLOT( slotObjectChanged( PMObject*, const int, TQObject* ) ) ); - connect( part, TQT_SIGNAL( clear( ) ), TQT_SLOT( slotClear( ) ) ); - connect( this, TQT_SIGNAL( objectChanged( PMObject*, const int, TQObject* ) ), - part, TQT_SLOT( slotObjectChanged( PMObject*, const int, TQObject* ) ) ); + connect( part, TQ_SIGNAL( refresh( ) ), TQ_SLOT( slotRefresh( ) ) ); + connect( part, TQ_SIGNAL( objectChanged( PMObject*, const int, TQObject* ) ), + TQ_SLOT( slotObjectChanged( PMObject*, const int, TQObject* ) ) ); + connect( part, TQ_SIGNAL( clear( ) ), TQ_SLOT( slotClear( ) ) ); + connect( this, TQ_SIGNAL( objectChanged( PMObject*, const int, TQObject* ) ), + part, TQ_SLOT( slotObjectChanged( PMObject*, const int, TQObject* ) ) ); slotRefresh( ); } |
