aboutsummaryrefslogtreecommitdiff
path: root/src/Color.hh
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-09-20 13:02:40 (GMT)
committerfluxgen <fluxgen>2002-09-20 13:02:40 (GMT)
commit3e0d0de6d9de39981ea0fd624a3d506f20670cb3 (patch)
tree39b578193cc2b4417de475204147b91d6df7788d /src/Color.hh
parent14d355e65826398ac3cb5ac1f1d97bfbeceabe27 (diff)
downloadfluxbox-3e0d0de6d9de39981ea0fd624a3d506f20670cb3.zip
fluxbox-3e0d0de6d9de39981ea0fd624a3d506f20670cb3.tar.bz2
removed assignment operator
Diffstat (limited to 'src/Color.hh')
-rw-r--r--src/Color.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Color.hh b/src/Color.hh
index bec7cc9..b26c575 100644
--- a/src/Color.hh
+++ b/src/Color.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: Color.hh,v 1.2 2002/09/14 13:49:09 fluxgen Exp $ 25// $Id: Color.hh,v 1.3 2002/09/20 13:02:40 fluxgen Exp $
26 26
27#ifndef FBTK_COLOR_HH 27#ifndef FBTK_COLOR_HH
28#define FBTK_COLOR_HH 28#define FBTK_COLOR_HH
@@ -45,8 +45,8 @@ public:
45 bool setFromString(const char *color_string, int screen); 45 bool setFromString(const char *color_string, int screen);
46 /// TODO don't like this 46 /// TODO don't like this
47 void setPixel(unsigned long pixel) { m_pixel = pixel; } 47 void setPixel(unsigned long pixel) { m_pixel = pixel; }
48 48 // TODO
49 Color &operator = (const Color &col_copy); 49 //Color &operator = (const Color &col_copy);
50 50
51 bool isAllocated() const { return m_allocated; } 51 bool isAllocated() const { return m_allocated; }
52 unsigned char red() const { return m_red; } 52 unsigned char red() const { return m_red; }