~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/widgets/sp-color-scales.h

  • Committer: kidproto
  • Date: 2006-08-25 07:03:19 UTC
  • Revision ID: kidproto@users.sourceforge.net-20060825070319-49nso3fdlwuveifv
peeled back the gboolean code as it hit on some complexity theory principles...
need to rethink and incrementally change gbooleans to bools

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
    void _getCmykaFloatv(gfloat *cmyka);
54
54
    guint32 _getRgba32();
55
55
    void _updateSliders(guint channels);
56
 
    void _recalcColor(bool changing);
 
56
    void _recalcColor(gboolean changing);
57
57
 
58
58
    void _setRangeLimit( gdouble upper );
59
59
 
60
60
    SPColorScalesMode _mode;
61
61
    gdouble _rangeLimit;
62
 
    bool _updating : 1;
63
 
    bool _dragging : 1;
 
62
    gboolean _updating : 1;
 
63
    gboolean _dragging : 1;
64
64
    GtkAdjustment *_a[5]; /* Channel adjustments */
65
65
    GtkWidget *_s[5]; /* Channel sliders */
66
66
    GtkWidget *_b[5]; /* Spinbuttons */