app, libgimpwidgets, modules, plug-ins: finishing GimpScaleEntry port.

Renaming the temporary function gimp_scale_entry_new2() into
gimp_scale_entry_new() now that the original code is entirely gone. This
is now a fully-fledged widget with a nice and proper introspectable API.
This commit is contained in:
Jehan 2020-11-01 02:35:03 +01:00
parent 77d2a93a52
commit b3c0ba061b
40 changed files with 259 additions and 260 deletions

View file

@ -168,8 +168,8 @@ colorsel_cmyk_init (ColorselCmyk *module)
for (i = 0; i < 4; i++)
{
module->scales[i] = gimp_scale_entry_new2 (gettext (cmyk_labels[i]),
0.0, 0.0, 100.0, 0);
module->scales[i] = gimp_scale_entry_new (gettext (cmyk_labels[i]),
0.0, 0.0, 100.0, 0);
gimp_help_set_help_data (module->scales[i], gettext (cmyk_tips[i]), NULL);
g_signal_connect (module->scales[i], "value-changed",