~inkscape.dev/inkscape/lpeUpdDefaultParams

« back to all changes in this revision

Viewing changes to src/live_effects/lpe-envelope.cpp

  • Committer: Jabiertxof
  • Date: 2017-04-28 20:05:42 UTC
  • mfrom: (15620.1.29 inkscape)
  • Revision ID: jtx@jtx-20170428200542-r82f6glr6ou2w5fd
Update to trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
    xx(_("_Enable left & right paths"), _("Enable the left and right deformation paths"), "xx", &wr, this, true),
24
24
    yy(_("_Enable top & bottom paths"), _("Enable the top and bottom deformation paths"), "yy", &wr, this, true)
25
25
{
26
 
    registerParameter( dynamic_cast<Parameter *>(&yy) );
27
 
    registerParameter( dynamic_cast<Parameter *>(&xx) );
28
 
    registerParameter( dynamic_cast<Parameter *>(&bend_path1) );
29
 
    registerParameter( dynamic_cast<Parameter *>(&bend_path2) );
30
 
    registerParameter( dynamic_cast<Parameter *>(&bend_path3) );
31
 
    registerParameter( dynamic_cast<Parameter *>(&bend_path4) );
 
26
    registerParameter(&yy);
 
27
    registerParameter(&xx);
 
28
    registerParameter(&bend_path1);
 
29
    registerParameter(&bend_path2);
 
30
    registerParameter(&bend_path3);
 
31
    registerParameter(&bend_path4);
32
32
    concatenate_before_pwd2 = true;
33
33
    apply_to_clippath_and_mask = true;
34
34
}