diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kxkb/layoutmap.cpp | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kxkb/layoutmap.cpp')
-rw-r--r-- | kxkb/layoutmap.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kxkb/layoutmap.cpp b/kxkb/layoutmap.cpp index f6273c967..9c13fc49b 100644 --- a/kxkb/layoutmap.cpp +++ b/kxkb/layoutmap.cpp @@ -47,14 +47,14 @@ void LayoutMap::setCurrentWindow(WId winId) // private //LayoutQueue& -QPtrQueue<LayoutState>& LayoutMap::getCurrentLayoutQueueInternal(WId winId) +TQPtrQueue<LayoutState>& LayoutMap::getCurrentLayoutQueueInternal(WId winId) { if( winId == X11Helper::UNKNOWN_WINDOW_ID ) return m_globalLayouts; switch( m_kxkbConfig.m_switchingPolicy ) { case SWITCH_POLICY_WIN_CLASS: { -// QString winClass = X11Helper::getWindowClass(winId, qt_xdisplay()); +// TQString winClass = X11Helper::getWindowClass(winId, qt_xdisplay()); return m_appLayouts[ m_currentWinClass ]; } case SWITCH_POLICY_WINDOW: @@ -67,9 +67,9 @@ QPtrQueue<LayoutState>& LayoutMap::getCurrentLayoutQueueInternal(WId winId) // private //LayoutQueue& -QPtrQueue<LayoutState>& LayoutMap::getCurrentLayoutQueue(WId winId) +TQPtrQueue<LayoutState>& LayoutMap::getCurrentLayoutQueue(WId winId) { - QPtrQueue<LayoutState>& layoutQueue = getCurrentLayoutQueueInternal(winId); + TQPtrQueue<LayoutState>& layoutQueue = getCurrentLayoutQueueInternal(winId); if( layoutQueue.count() == 0 ) { initLayoutQueue(layoutQueue); kdDebug() << "map: Created queue for " << winId << " size: " << layoutQueue.count() << endl; |