]> Dogcows Code - chaz/openbox/blobdiff - otk/rendercolor.hh
copy textures in appearance_copy
[chaz/openbox] / otk / rendercolor.hh
index 1f24b3c9106681705422f16c828ac70b3e482fd5..5076167f3d9d565ddd43d73fdff1b19b09a0a197 100644 (file)
@@ -37,13 +37,10 @@ private:
   unsigned char _green;
   unsigned char _blue;
 
-  mutable unsigned long _pixel;
-  mutable GC _gc;
+  unsigned long _pixel;
+  GC _gc;
 
-  mutable bool _allocated;
-  mutable bool _created;
-
-  void create() const;
+  void create();
   
 public:
   static void initialize();
@@ -58,8 +55,8 @@ public:
   inline unsigned char red() const { return _red; }
   inline unsigned char green() const { return _green; }
   inline unsigned char blue() const { return _blue; }
-  unsigned long pixel() const;
-  GC gc() const;
+  unsigned long pixel() const { return _pixel; }
+  GC gc() const { return _gc; }
 };
 
 }
This page took 0.02301 seconds and 4 git commands to generate.