Angus Leeming <[EMAIL PROTECTED]> writes:

| Great idea. Done it.
| 
| fdui->counter_zoom = obj = 
| fl_add_counter(FL_NORMAL_COUNTER,310,130,100,30,"Zoom %|#Z");
| 
| becomes
| 
| fdui->counter_zoom = obj;
| {
|    // xgettext:no-c-format
|    char * dummy = N_("Zoom %|#Z");
|    obj = fl_add_counter(FL_NORMAL_COUNTER,310,130,100,30,idex(_(dummy)));
|    fl_set_button_shortcut(obj,scex(_(dummy)),1);
| }
| 
| The sed script is ALMOST understandable too!
| Angus

please make that dummy const if possible.

the grouping is not super-nice, but I guess it will do.

        Lgb

Reply via email to