aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-07-19 21:14:11 (GMT)
committerfluxgen <fluxgen>2002-07-19 21:14:11 (GMT)
commit46a3d8ceb31d677ff563e273274979f53ae53a87 (patch)
tree8f8fc735cdfcc7d1839a18d608c6c7c12f145796
parent56bbd4e5804ecb7230aa21c43026aec36ae8982d (diff)
downloadfluxbox-46a3d8ceb31d677ff563e273274979f53ae53a87.zip
fluxbox-46a3d8ceb31d677ff563e273274979f53ae53a87.tar.bz2
changed function name
-rw-r--r--src/BaseDisplay.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/BaseDisplay.hh b/src/BaseDisplay.hh
index 173749c..46d8a66 100644
--- a/src/BaseDisplay.hh
+++ b/src/BaseDisplay.hh
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: BaseDisplay.hh,v 1.21 2002/05/17 11:55:31 fluxgen Exp $ 25// $Id: BaseDisplay.hh,v 1.22 2002/07/19 21:14:11 fluxgen Exp $
26 26
27#ifndef BASEDISPLAY_HH 27#ifndef BASEDISPLAY_HH
28#define BASEDISPLAY_HH 28#define BASEDISPLAY_HH
@@ -154,7 +154,7 @@ public:
154 154
155 inline Visual *getVisual(void) { return visual; } 155 inline Visual *getVisual(void) { return visual; }
156 inline const Window &getRootWindow(void) const { return root_window; } 156 inline const Window &getRootWindow(void) const { return root_window; }
157 inline const Colormap &getColormap(void) const { return colormap; } 157 inline const Colormap &colormap(void) const { return m_colormap; }
158 158
159 inline int getDepth(void) const { return depth; } 159 inline int getDepth(void) const { return depth; }
160 inline int getScreenNumber(void) const { return screen_number; } 160 inline int getScreenNumber(void) const { return screen_number; }
@@ -177,7 +177,7 @@ private:
177 BaseDisplay *basedisplay; 177 BaseDisplay *basedisplay;
178 Visual *visual; 178 Visual *visual;
179 Window root_window; 179 Window root_window;
180 Colormap colormap; 180 Colormap m_colormap;
181 181
182 int depth, screen_number; 182 int depth, screen_number;
183 unsigned int width, height; 183 unsigned int width, height;