~ubuntu-branches/ubuntu/maverick/monodevelop/maverick

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.GtkCore/libstetic/TypedPropertyDescriptor.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-07-05 13:00:05 UTC
  • mfrom: (1.2.8 upstream) (1.3.9 experimental)
  • Revision ID: james.westby@ubuntu.com-20100705130005-d6hp4k5gcn1xkj8c
Tags: 2.4+dfsg-1ubuntu1
* debian/patches/remove_support_for_moonlight.patch,
  debian/patches/dont_add_moonlight_to_core_addins.patch,
  debian/control:
  + Enable support for Moonlight
* debian/rules:
  + Ensure Moonlight addin isn't shipped in main MonoDevelop package by
    mistake

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
                                description = pspec.Blurb;
58
58
                                minimum = pspec.Minimum;
59
59
                                maximum = pspec.Maximum;
60
 
                                label = pspec.Nick;
 
60
                                label = propertyName;
61
61
                                if (!elem.HasAttribute ("ignore-default"))
62
62
                                        hasDefault = Type.GetTypeCode (PropertyType) != TypeCode.Object || PropertyType.IsEnum;
63
63
                        } else {
88
88
 
89
89
                        pspec = FindPSpec (propertyInfo);
90
90
                        if (pspec != null) {
91
 
                                label = pspec.Nick;
 
91
                                label = propertyName;
92
92
                                description = pspec.Blurb;
93
93
                                minimum = pspec.Minimum;
94
94
                                maximum = pspec.Maximum;