Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 19 Oct 2002 14:26:08 -0700 (PDT)
From:      Fork <bouloumag@hotmail.com>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/44280: KMess  : right-click problem under Qt 3
Message-ID:  <200210192126.g9JLQ8JJ003826@www.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         44280
>Category:       ports
>Synopsis:       KMess  : right-click problem under Qt 3
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Oct 19 14:30:01 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     Fork
>Release:        FreeBSD 4.7-RELEASE
>Organization:
>Environment:
>Description:
       Right-clicking does not work properly in KMess 
with Qt 3. 
>How-To-Repeat:
Try to right-click on a name to block it. Under Qt 3.0.5, this will never work.
>Fix:
Here is the solution from the kmess team :

How do I make right-clicking work in Qt 3.0.5?
 
Edit the file "kmessviewinterface.cpp". In line 76, change "rightButtonClicked" to "contextMenuRequested" so that 

connect( contactListView_, SIGNAL( rightButtonClicked(QListViewItem*,const QPoint&,int) ), this, SLOT( itemRightClicked(QListViewItem*,const QPoint&,int) ) ); 

becomes

 connect( contactListView_, SIGNAL( contextMenuRequested(QListViewItem*,const QPoint&,int) ), this, SLOT( itemRightClicked(QListViewItem*,const QPoint&,int) ) ); 

Then remake and reinstall. 

>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200210192126.g9JLQ8JJ003826>