~ubuntu-branches/ubuntu/lucid/synfigstudio/lucid

« back to all changes in this revision

Viewing changes to src/synfigapp/value_desc.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Stefano Zacchiroli
  • Date: 2010-01-26 11:20:50 UTC
  • mfrom: (1.1.5 upstream) (2.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20100126112050-e43u17c5zpc5hse4
Tags: 0.62.00-1
* QA upload
* Properly orphan the package (set Maintainer to QA, empty Uploaders)
* New upstream release
* Bump build-dep on (lib)synfig to most recent version
* Bump standards-version to 3.8.3, no changes needed
* Change section of the "-dbg" package to debug, thanks lintian

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
                if (parent_is_linkable_value_node())
69
69
                {
70
70
                        synfig::LinkableValueNode::Handle value_node(synfig::LinkableValueNode::Handle::cast_reinterpret(get_parent_value_node()));
71
 
                        description = strprintf("%s %s", _("Value Node"),
 
71
                        description = strprintf("%s %s", _("ValueNode"),
72
72
                                                                        value_node->get_description(get_index(), show_exported_name).c_str());
73
73
                }
 
74
                else if (parent_is_value_node_const())
 
75
                {
 
76
                        synfig::ValueNode_Const::Handle value_node(synfig::ValueNode_Const::Handle::cast_reinterpret(get_parent_value_node()));
 
77
                        description = strprintf("%s %s", _("Const ValueNode"),
 
78
                                                                        value_node->get_description(show_exported_name).c_str());
 
79
                }
 
80
                else if (parent_is_waypoint())
 
81
                        description = _("Waypoint");
74
82
                else
75
83
                {
76
84
                        warning("%s:%d didn't expect to get here", __FILE__, __LINE__);