~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric-updates

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.GtkCore/lib/stetic/libstetic/wrapper/HScale.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2009-02-18 08:40:51 UTC
  • mfrom: (1.2.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090218084051-gh8m6ukvokbwj7cf
Tags: 1.9.2+dfsg-1ubuntu1
* Merge from Debian Experimental (LP: #330519), remaining Ubuntu changes:
  + debian/control:
    - Update for Gnome# 2.24
    - Add libmono-cairo1.0-cil to build-deps to fool pkg-config check

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
using System;
2
 
using System.CodeDom;
3
 
 
4
 
namespace Stetic.Wrapper {
5
 
 
6
 
        public class HScale : Scale {
7
 
 
8
 
                public static new Gtk.HScale CreateInstance ()
9
 
                {
10
 
                        return new Gtk.HScale (0.0, 100.0, 1.0);
11
 
                }
12
 
                
13
 
                internal protected override CodeExpression GenerateObjectCreation (GeneratorContext ctx)
14
 
                {
15
 
                        return new CodeObjectCreateExpression (ClassDescriptor.WrappedTypeName, new CodePrimitiveExpression (null));
16
 
                }
17
 
        }
18
 
}