~ubuntu-branches/ubuntu/hoary/monodevelop/hoary

« back to all changes in this revision

Viewing changes to src/Libraries/MonoDevelop.Gui.Widgets/Dock/Docker.cs

  • Committer: Bazaar Package Importer
  • Author(s): Brandon Hale
  • Date: 2004-10-07 11:51:11 UTC
  • Revision ID: james.westby@ubuntu.com-20041007115111-pxcqnwfxyq5mhcx5
Tags: 0.5.1-3
Use dh_netdeps in debian/rules and debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
using System;
 
2
using Gtk;
 
3
 
 
4
namespace MonoDevelop.Gui.Widgets
 
5
{
 
6
 
 
7
        public class Docker : DrawingArea {
 
8
 
 
9
                public Docker () : base ()
 
10
                {
 
11
                        this.ExposeEvent += new ExposeEventHandler (OnExpose);
 
12
                }
 
13
 
 
14
                void OnExpose (object o, ExposeEventArgs e)
 
15
                {
 
16
 
 
17
                }
 
18
        }
 
19
 
 
20
}