diff options
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; |