aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/GContext.cc
diff options
context:
space:
mode:
authorMathias Gumz <akira at fluxbox dot org>2007-12-30 15:32:53 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2007-12-30 15:32:53 (GMT)
commit04cd2fd14c6f45f61457e034906f630ce46a76cc (patch)
tree67e2f2f7977c3e8525c2ae7eb30f593f7f440b82 /src/FbTk/GContext.cc
parent4cc810b0d39917d37fa08034ac7dd509292c9ce3 (diff)
downloadfluxbox-04cd2fd14c6f45f61457e034906f630ce46a76cc.zip
fluxbox-04cd2fd14c6f45f61457e034906f630ce46a76cc.tar.bz2
removed some unneeded headers
Diffstat (limited to 'src/FbTk/GContext.cc')
-rw-r--r--src/FbTk/GContext.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/FbTk/GContext.cc b/src/FbTk/GContext.cc
index ebdc178..79db31b 100644
--- a/src/FbTk/GContext.cc
+++ b/src/FbTk/GContext.cc
@@ -33,9 +33,9 @@ namespace FbTk {
33 33
34Display *GContext::m_display = 0; 34Display *GContext::m_display = 0;
35 35
36GContext::GContext(const FbTk::FbDrawable &drawable): 36GContext::GContext(const FbTk::FbDrawable &drawable):
37 m_gc(XCreateGC(drawable.display(), drawable.drawable(), 0, 0)) { 37 m_gc(XCreateGC(drawable.display(), drawable.drawable(), 0, 0)) {
38 38
39 if (m_display == 0) 39 if (m_display == 0)
40 m_display = drawable.display(); 40 m_display = drawable.display();
41 41
@@ -78,7 +78,7 @@ void GContext::copy(GC gc) {
78void GContext::copy(const GContext &gc) { 78void GContext::copy(const GContext &gc) {
79 // copy X gc 79 // copy X gc
80 copy(gc.gc()); 80 copy(gc.gc());
81 81
82 //!! TODO: copy our extended gcontext 82 //!! TODO: copy our extended gcontext
83 83
84} 84}