aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/FbPixmap.hh
diff options
context:
space:
mode:
authorsimonb <simonb>2005-04-02 14:59:38 (GMT)
committersimonb <simonb>2005-04-02 14:59:38 (GMT)
commit007c495239f0dc111bfc94610fb561320ec27232 (patch)
treee077f83dd601bc7b9e3ece85a7b9503c05e137de /src/FbTk/FbPixmap.hh
parent62431956b4813e45a77c4b0c925fdb8eba3305e8 (diff)
downloadfluxbox-007c495239f0dc111bfc94610fb561320ec27232.zip
fluxbox-007c495239f0dc111bfc94610fb561320ec27232.tar.bz2
Tidy up some redundant pixmap allocs
Diffstat (limited to 'src/FbTk/FbPixmap.hh')
-rw-r--r--src/FbTk/FbPixmap.hh5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/FbTk/FbPixmap.hh b/src/FbTk/FbPixmap.hh
index c00aa99..a1c17a5 100644
--- a/src/FbTk/FbPixmap.hh
+++ b/src/FbTk/FbPixmap.hh
@@ -70,11 +70,12 @@ public:
70 70
71 static Pixmap getRootPixmap(int screen_num); 71 static Pixmap getRootPixmap(int screen_num);
72 72
73private:
74 void free();
75 void create(Drawable src, 73 void create(Drawable src,
76 unsigned int width, unsigned int height, 74 unsigned int width, unsigned int height,
77 int depth); 75 int depth);
76
77private:
78 void free();
78 Pixmap m_pm; 79 Pixmap m_pm;
79 unsigned int m_width, m_height; 80 unsigned int m_width, m_height;
80 int m_depth; 81 int m_depth;