Angus Leeming <[EMAIL PROTECTED]> writes:
| This patch fixes fdfixc.sed good 'n' proper. All suggestions have been acted
| upon.
|
| Note that you'll need a make updatesrc in src/frontends/xforms/forms/
|
| It also allows the user to input floats in the font_size section of
| FormPreferences::Look&Feel.
|
| Angus
+# fdui->counter_zoom = obj = fl_add_counter(FL_NORMAL_COUNTER,1,2,3,4,"Zoom %|#Z");
+#
+# becomes
+# fdui->counter_zoom = obj;
Why is this here?
Isn't it just a noop?
+# {
+# // xgettext:no-c-format
+# char const * const dummy = N_("Zoom %|#Z");
+# fdui->counter_zoom = obj =
+fl_add_counter(FL_NORMAL_COUNTER,1,2,3,4,idex(_(dummy)));
+# fl_set_button_shortcut(obj,scex(_(dummy)),1);
+# }
+
Lgb