summaryrefslogtreecommitdiff
path: root/src/Fl_Color_Chooser.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1998-10-21 14:21:44 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1998-10-21 14:21:44 +0000
commit7657a2e4a536a9ee50a9277c2662dc49362ae341 (patch)
tree4374705cd67b2c5195cc2aa5986fc1591680852b /src/Fl_Color_Chooser.cxx
parentd3dee719fbaaa0b64d15ad7397e549d2e4ee7d6f (diff)
Fixed all the frigging file headings - was missing a $ in the Id string.
Applied some damage bit fixes from Bill Spitzak. git-svn-id: file:///fltk/svn/fltk/trunk@28 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Color_Chooser.cxx')
-rw-r--r--src/Fl_Color_Chooser.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Fl_Color_Chooser.cxx b/src/Fl_Color_Chooser.cxx
index 7a8df7581..da316e6f4 100644
--- a/src/Fl_Color_Chooser.cxx
+++ b/src/Fl_Color_Chooser.cxx
@@ -1,5 +1,5 @@
//
-// "$Id"
+// "$Id: Fl_Color_Chooser.cxx,v 1.4 1998/10/21 14:20:01 mike Exp $"
//
// Color chooser for the Fast Light Tool Kit (FLTK).
//
@@ -127,12 +127,12 @@ int Fl_Color_Chooser::rgb(double r, double g, double b) {
set_valuators();
if (value_ != pv) {
#ifdef UPDATE_HUE_BOX
- huebox.damage(FL_DAMAGE_EXPOSE|FL_DAMAGE_OVERLAY);
+ huebox.damage(FL_DAMAGE_SCROLL);
#endif
valuebox.damage(FL_DAMAGE_EXPOSE);}
if (hue_ != ph || saturation_ != ps) {
huebox.damage(FL_DAMAGE_EXPOSE);
- valuebox.damage(FL_DAMAGE_EXPOSE|FL_DAMAGE_OVERLAY);
+ valuebox.damage(FL_DAMAGE_SCROLL);
}
return 1;
}
@@ -148,12 +148,12 @@ int Fl_Color_Chooser::hsv(double h, double s, double v) {
hue_ = h; saturation_ = s; value_ = v;
if (value_ != pv) {
#ifdef UPDATE_HUE_BOX
- huebox.damage(FL_DAMAGE_EXPOSE|FL_DAMAGE_OVERLAY);
+ huebox.damage(FL_DAMAGE_SCROLL);
#endif
valuebox.damage(FL_DAMAGE_EXPOSE);}
if (hue_ != ph || saturation_ != ps) {
huebox.damage(FL_DAMAGE_EXPOSE);
- valuebox.damage(FL_DAMAGE_EXPOSE|FL_DAMAGE_OVERLAY);
+ valuebox.damage(FL_DAMAGE_SCROLL);
}
hsv2rgb(h,s,v,r_,g_,b_);
set_valuators();
@@ -426,5 +426,5 @@ int fl_color_chooser(const char* name, uchar& r, uchar& g, uchar& b) {
}
//
-// End of "$Id: Fl_Color_Chooser.cxx,v 1.3 1998/10/19 20:45:42 mike Exp $".
+// End of "$Id: Fl_Color_Chooser.cxx,v 1.4 1998/10/21 14:20:01 mike Exp $".
//