diff options
author | Michele Calgaro <[email protected]> | 2023-11-05 15:25:50 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-05 15:25:50 +0900 |
commit | dbea9ec845ed66ab111e3295a15a861f71be177a (patch) | |
tree | ee688967d458f0eb46925830c6bf32a4a7e02be9 /src/part/radialMap/widgetEvents.cpp | |
parent | 629295b3b74427fbdf30c38262a1e4612e508e2b (diff) | |
download | filelight-dbea9ec845ed66ab111e3295a15a861f71be177a.tar.gz filelight-dbea9ec845ed66ab111e3295a15a861f71be177a.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/part/radialMap/widgetEvents.cpp')
-rw-r--r-- | src/part/radialMap/widgetEvents.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/part/radialMap/widgetEvents.cpp b/src/part/radialMap/widgetEvents.cpp index fd0e1a4..1ad7f6d 100644 --- a/src/part/radialMap/widgetEvents.cpp +++ b/src/part/radialMap/widgetEvents.cpp @@ -156,7 +156,7 @@ RadialMap::Widget::mousePressEvent( TQMouseEvent *e ) const KURL url = Widget::url( m_focus->file() ); const bool isDir = m_focus->file()->isDirectory(); - if( e->button() == Qt::RightButton ) + if( e->button() == TQt::RightButton ) { TDEPopupMenu popup; popup.insertTitle( m_focus->file()->fullPath( m_tree ) ); @@ -230,7 +230,7 @@ RadialMap::Widget::mousePressEvent( TQMouseEvent *e ) m_tip->hide(); // user expects this - if (!isDir || e->button() == Qt::MidButton) { + if (!isDir || e->button() == TQt::MidButton) { TDEIconEffect::visualActivate( this, rect ); new KRun( url, this, true ); //FIXME see above } |