~ubuntu-branches/ubuntu/saucy/monodevelop/saucy

« back to all changes in this revision

Viewing changes to external/monomac/samples/DockAppIcon/MainWindow.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2012-05-27 18:08:20 UTC
  • mfrom: (1.8.5) (1.5.8 sid)
  • Revision ID: package-import@ubuntu.com-20120527180820-f1ub6lhg0s50wci1
Tags: 3.0.2+dfsg-3
* [fcecfe7] Fix monodevelop-core-addins.pc.in to point to actual 
  installed location of assemblies.
* [26e1a07] DebSrc 3.0 does not support Quilt's -p parameter, so 
  manually adjust the path in the patch file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
using System;
 
3
using System.Collections.Generic;
 
4
using System.Linq;
 
5
using MonoMac.Foundation;
 
6
using MonoMac.AppKit;
 
7
 
 
8
namespace DockAppIcon
 
9
{
 
10
        public partial class MainWindow : MonoMac.AppKit.NSWindow
 
11
        {
 
12
                public MainWindow (IntPtr handle) : base(handle)
 
13
                {
 
14
                }
 
15
 
 
16
        }
 
17
}
 
18