aboutsummaryrefslogtreecommitdiff
path: root/dw/fltkui.cc
diff options
context:
space:
mode:
authorcorvid <corvid@lavabit.com>2011-02-09 01:31:14 +0000
committercorvid <corvid@lavabit.com>2011-02-09 01:31:14 +0000
commita11a2e0366866db9409760d312eda22a5bf0a690 (patch)
treec3aaaaf329bd6725bf02a38d2af5cf04bbcf05b6 /dw/fltkui.cc
parent5f25bfeed977c88e2b9ee2cb5f84bb2ba46f719f (diff)
disable symbol-interpretation in labels
There was some discussion of how to do this last month in fltk-dev http://fltk.org/newsgroups.php?s10630+gfltk.development+v10640+T0
Diffstat (limited to 'dw/fltkui.cc')
-rw-r--r--dw/fltkui.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/dw/fltkui.cc b/dw/fltkui.cc
index 0ffafe35..9ce5a816 100644
--- a/dw/fltkui.cc
+++ b/dw/fltkui.cc
@@ -244,7 +244,6 @@ Fl_Widget *FltkLabelButtonResource::createNewWidget (core::Allocation
Fl_Button *button =
new Fl_Button (allocation->x, allocation->y, allocation->width,
allocation->ascent + allocation->descent, label);
-// button->clear_flag (SHORTCUT_LABEL);
button->callback (widgetCallback, this);
button->when (FL_WHEN_RELEASE);
return button;
@@ -736,7 +735,6 @@ Fl_Button *FltkCheckButtonResource::createNewButton (core::Allocation
Fl_Check_Button *cb =
new Fl_Check_Button (allocation->x, allocation->y, allocation->width,
allocation->ascent + allocation->descent);
-// cb->clear_flag (SHORTCUT_LABEL);
return cb;
}
@@ -848,7 +846,6 @@ Fl_Button *FltkRadioButtonResource::createNewButton (core::Allocation
Fl_Button *button =
new Fl_Round_Button (allocation->x, allocation->y, allocation->width,
allocation->ascent + allocation->descent);
-// button->clear_flag (SHORTCUT_LABEL);
button->when (FL_WHEN_CHANGED);
button->callback (widgetCallback, this);
button->type (FL_TOGGLE_BUTTON);
@@ -1061,7 +1058,6 @@ Fl_Widget *FltkListResource::createNewWidget (core::Allocation *allocation)
tree->showroot(0);
tree->connectorstyle(FL_TREE_CONNECTOR_NONE);
tree->marginleft(-14);
-// tree->clear_flag (SHORTCUT_LABEL);
tree->callback(widgetCallback,this);
tree->when(FL_WHEN_CHANGED);