diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-12 10:51:50 +0900 | 
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-16 10:04:33 +0900 | 
| commit | 1c65be77cd84b454f3fe69f211849a712ad99ed0 (patch) | |
| tree | f9309bc873f0f7838ee21373c32d5fd388da79d9 /kcontrol/tdefontinst/kcmfontinst/KFileFontView.cpp | |
| parent | 55ba7bff2cd71ef2582b43c336afc55325b48a60 (diff) | |
| download | tdebase-1c65be77cd84b454f3fe69f211849a712ad99ed0.tar.gz tdebase-1c65be77cd84b454f3fe69f211849a712ad99ed0.zip  | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit a4241b7911d2e0b36edfb02f616b8b282050c0ec)
Diffstat (limited to 'kcontrol/tdefontinst/kcmfontinst/KFileFontView.cpp')
| -rw-r--r-- | kcontrol/tdefontinst/kcmfontinst/KFileFontView.cpp | 22 | 
1 files changed, 11 insertions, 11 deletions
diff --git a/kcontrol/tdefontinst/kcmfontinst/KFileFontView.cpp b/kcontrol/tdefontinst/kcmfontinst/KFileFontView.cpp index 559c8c4c5..e9f5b7dae 100644 --- a/kcontrol/tdefontinst/kcmfontinst/KFileFontView.cpp +++ b/kcontrol/tdefontinst/kcmfontinst/KFileFontView.cpp @@ -79,15 +79,15 @@ CKFileFontView::CKFileFontView(TQWidget *parent, const char *name)      setAllColumnsShowFocus(true);      setDragEnabled(false); -    connect(header(), TQT_SIGNAL(sectionClicked(int)), TQT_SLOT(slotSortingChanged(int))); -    connect(this, TQT_SIGNAL(returnPressed(TQListViewItem *)), TQT_SLOT(slotActivate(TQListViewItem *))); -    connect(this, TQT_SIGNAL(clicked(TQListViewItem *, const TQPoint&, int)), TQT_SLOT(selected( TQListViewItem *))); -    connect(this, TQT_SIGNAL(doubleClicked(TQListViewItem *, const TQPoint &, int)), TQT_SLOT(slotActivate(TQListViewItem *))); -    connect(this, TQT_SIGNAL(contextMenuRequested(TQListViewItem *, const TQPoint &, int)), -	    this, TQT_SLOT(slotActivateMenu(TQListViewItem *, const TQPoint &))); +    connect(header(), TQ_SIGNAL(sectionClicked(int)), TQ_SLOT(slotSortingChanged(int))); +    connect(this, TQ_SIGNAL(returnPressed(TQListViewItem *)), TQ_SLOT(slotActivate(TQListViewItem *))); +    connect(this, TQ_SIGNAL(clicked(TQListViewItem *, const TQPoint&, int)), TQ_SLOT(selected( TQListViewItem *))); +    connect(this, TQ_SIGNAL(doubleClicked(TQListViewItem *, const TQPoint &, int)), TQ_SLOT(slotActivate(TQListViewItem *))); +    connect(this, TQ_SIGNAL(contextMenuRequested(TQListViewItem *, const TQPoint &, int)), +	    this, TQ_SLOT(slotActivateMenu(TQListViewItem *, const TQPoint &)));      // DND -    connect(&(d->itsAutoOpenTimer), TQT_SIGNAL(timeout()), this, TQT_SLOT(slotAutoOpen())); +    connect(&(d->itsAutoOpenTimer), TQ_SIGNAL(timeout()), this, TQ_SLOT(slotAutoOpen()));      setSelectionMode(KFileView::selectionMode());      itsResolver = new KMimeTypeResolver<CFontListViewItem, CKFileFontView>(this);  } @@ -211,8 +211,8 @@ void CKFileFontView::highlighted( TQListViewItem *item )  void CKFileFontView::setSelectionMode(KFile::SelectionMode sm)  { -    disconnect(TQT_SIGNAL(selectionChanged()), this); -    disconnect(TQT_SIGNAL(selectionChanged(TQListViewItem *)), this); +    disconnect(TQ_SIGNAL(selectionChanged()), this); +    disconnect(TQ_SIGNAL(selectionChanged(TQListViewItem *)), this);      switch (sm)      { @@ -233,9 +233,9 @@ void CKFileFontView::setSelectionMode(KFile::SelectionMode sm)      // for highlighting      if (KFile::Multi==sm || KFile::Extended==sm) -        connect(this, TQT_SIGNAL(selectionChanged()), TQT_SLOT(slotSelectionChanged())); +        connect(this, TQ_SIGNAL(selectionChanged()), TQ_SLOT(slotSelectionChanged()));      else -        connect(this, TQT_SIGNAL(selectionChanged(TQListViewItem *)), TQT_SLOT(highlighted(TQListViewItem * ))); +        connect(this, TQ_SIGNAL(selectionChanged(TQListViewItem *)), TQ_SLOT(highlighted(TQListViewItem * )));  }  bool CKFileFontView::isSelected(const KFileItem *i) const  | 
