diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:13:02 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-02 02:13:02 -0600 |
commit | 8bd291c0e8a9d8b6eec6f5217e4d5c2f1fd06b96 (patch) | |
tree | bf71d4bfa94d0561e80456400ae5fe2bb501fbd8 /kpager | |
parent | e8a1cdc01d38125bea12d5494db977ae6429919a (diff) | |
download | tdebase-8bd291c0e8a9d8b6eec6f5217e4d5c2f1fd06b96.tar.gz tdebase-8bd291c0e8a9d8b6eec6f5217e4d5c2f1fd06b96.zip |
Rename additional global functions and variables for tqt3
Diffstat (limited to 'kpager')
-rw-r--r-- | kpager/desktop.cpp | 2 | ||||
-rw-r--r-- | kpager/kpager.cpp | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/kpager/desktop.cpp b/kpager/desktop.cpp index f155d7050..6af6d8daf 100644 --- a/kpager/desktop.cpp +++ b/kpager/desktop.cpp @@ -348,7 +348,7 @@ void Desktop::dropEvent(TQDropEvent *ev) convertCoordP2S(x,y); // kdDebug() << "moving window " << win << "d from " << origdesk << " to " << m_desk << endl; -// NETWinInfo NETinfo( qt_xdisplay(), win, qt_xrootwin(), NET::Client | NET::WMDesktop); +// NETWinInfo NETinfo( tqt_xdisplay(), win, tqt_xrootwin(), NET::Client | NET::WMDesktop); if (m_desk==0) { diff --git a/kpager/kpager.cpp b/kpager/kpager.cpp index 3d17ffaaf..3bce94fac 100644 --- a/kpager/kpager.cpp +++ b/kpager/kpager.cpp @@ -85,7 +85,7 @@ KPagerMainWindow::KPagerMainWindow(TQWidget *parent, const char *name) move(xpos,ypos); else { -// NETRootInfo ri( qt_xdisplay(), NET::WorkArea ); +// NETRootInfo ri( tqt_xdisplay(), NET::WorkArea ); // NETRect rect=ri.workArea(1); // move(rect.pos.x+rect.size.width-m_pPager->width(), // rect.pos.y+rect.size.height-m_pPager->height()); @@ -609,10 +609,10 @@ void KPager::clientPopupActivated( int id ) switch ( id ) { case MaximizeOp: if ( (m_winfo.state() & NET::Max) == 0 ) { - NETWinInfo ni( qt_xdisplay(), m_winfo.win(), qt_xrootwin(), 0); + NETWinInfo ni( tqt_xdisplay(), m_winfo.win(), tqt_xrootwin(), 0); ni.setState( NET::Max, NET::Max ); } else { - NETWinInfo ni( qt_xdisplay(), m_winfo.win(), qt_xrootwin(), 0); + NETWinInfo ni( tqt_xdisplay(), m_winfo.win(), tqt_xrootwin(), 0); ni.setState( 0, NET::Max ); } break; @@ -631,7 +631,7 @@ void KPager::clientPopupActivated( int id ) } break; case CloseOp: { - NETRootInfo ri( qt_xdisplay(), 0 ); + NETRootInfo ri( tqt_xdisplay(), 0 ); ri.closeWindowRequest( m_winfo.win() ); } break; default: |