summaryrefslogtreecommitdiffstats
path: root/kxkb/layoutmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'kxkb/layoutmap.h')
-rw-r--r--kxkb/layoutmap.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kxkb/layoutmap.h b/kxkb/layoutmap.h
index 3a7197965..4be4cdfb2 100644
--- a/kxkb/layoutmap.h
+++ b/kxkb/layoutmap.h
@@ -1,5 +1,5 @@
//
-// C++ Interface: tqlayoutmap
+// C++ Interface: layoutmap
//
// Description:
//
@@ -26,14 +26,14 @@
// LayoutInfo is used for sticky switching and per-window/application switching policy
struct LayoutState {
- const LayoutUnit& tqlayoutUnit;
+ const LayoutUnit& layoutUnit;
int group;
- LayoutState(const LayoutUnit& tqlayoutUnit_):
- tqlayoutUnit(tqlayoutUnit_),
- group(tqlayoutUnit_.defaultGroup)
+ LayoutState(const LayoutUnit& layoutUnit_):
+ layoutUnit(layoutUnit_),
+ group(layoutUnit_.defaultGroup)
{
-// kdDebug() << "new LayoutState " << tqlayoutUnit.toPair() << " group: " << group << endl;
+// kdDebug() << "new LayoutState " << layoutUnit.toPair() << " group: " << group << endl;
}
};
@@ -48,7 +48,7 @@ public:
LayoutMap(const KxkbConfig& kxkbConfig);
// void setConfig(const KxkbConfig& kxkbConfig);
- void setCurrentLayout(const LayoutUnit& tqlayoutUnit);
+ void setCurrentLayout(const LayoutUnit& layoutUnit);
void setCurrentGroup(int group);
LayoutState& getNextLayout();
LayoutState& getCurrentLayout();
@@ -66,7 +66,7 @@ private:
WId m_currentWinId;
TQString m_currentWinClass; // only for SWITCH_POLICY_WIN_CLASS
- void initLayoutQueue(LayoutQueue& tqlayoutQueue);
+ void initLayoutQueue(LayoutQueue& layoutQueue);
LayoutQueue& getCurrentLayoutQueue(WId winId);
LayoutQueue& getCurrentLayoutQueueInternal(WId winId);
void clearMaps();