diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-06 12:58:35 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-09 10:15:44 +0900 |
| commit | 8f6829a20f2439f2bcfb7f39ce64eef133e93234 (patch) | |
| tree | 1dc5e354119d6224d9f90d93647947db49b88bdb /sidebar/linkview.cpp | |
| parent | 210aaadd2d93af34c05914ba67a83895458601f9 (diff) | |
| download | tde-style-baghira-8f6829a2.tar.gz tde-style-baghira-8f6829a2.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 936a0c73f552cce101c9aa5ec64800fad86542a2)
Diffstat (limited to 'sidebar/linkview.cpp')
| -rw-r--r-- | sidebar/linkview.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sidebar/linkview.cpp b/sidebar/linkview.cpp index 23b6cbe..b012b20 100644 --- a/sidebar/linkview.cpp +++ b/sidebar/linkview.cpp @@ -54,14 +54,14 @@ LinkView::LinkView(TQWidget * parent, const char * name, WFlags f): locations->setCurrentItem(0); locations->setSelected( locations->selectedItem(), false ); hardware->installEventFilter(this); - connect (hardware, SIGNAL(highlighted( int )), this, SLOT(unselectLocations())); - connect (locations, SIGNAL(highlighted( int )), this, SLOT(unselectHardware())); - connect (hardware, SIGNAL(scrolled(int,int)), this, SLOT(scrollBy(int,int))); - connect (locations, SIGNAL(scrolled(int,int)), this, SLOT(scrollBy(int,int))); - connect (hardware, SIGNAL(itemNumberChanged(bool)), this, SLOT(adjustSplitter2Hardware(bool))); - connect (locations, SIGNAL(itemNumberChanged(bool)), this, SLOT(adjustSplitter2Locations())); - TQTimer::singleShot(50, this, SLOT(adjustSplitter2Locations())); - TQTimer::singleShot(60, this, SLOT(postInstallEventFilter())); + connect (hardware, TQ_SIGNAL(highlighted( int )), this, TQ_SLOT(unselectLocations())); + connect (locations, TQ_SIGNAL(highlighted( int )), this, TQ_SLOT(unselectHardware())); + connect (hardware, TQ_SIGNAL(scrolled(int,int)), this, TQ_SLOT(scrollBy(int,int))); + connect (locations, TQ_SIGNAL(scrolled(int,int)), this, TQ_SLOT(scrollBy(int,int))); + connect (hardware, TQ_SIGNAL(itemNumberChanged(bool)), this, TQ_SLOT(adjustSplitter2Hardware(bool))); + connect (locations, TQ_SIGNAL(itemNumberChanged(bool)), this, TQ_SLOT(adjustSplitter2Locations())); + TQTimer::singleShot(50, this, TQ_SLOT(adjustSplitter2Locations())); + TQTimer::singleShot(60, this, TQ_SLOT(postInstallEventFilter())); } static EventKiller *eventKiller = 0L; |
