~ubuntu-branches/ubuntu/gutsy/tomboy/gutsy-updates

« back to all changes in this revision

Viewing changes to Tomboy/dbus-sharp/InterfaceAttribute.cs

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2006-11-22 19:22:17 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20061122192217-odnb17d1ib22okof
Tags: 0.5.1-0ubuntu1
* New upstream release:
  + New Managed D-Bus/DBusSharp (Sebastian Dröge)
  + Additional search interface improvements
  + More secure wrapper script to launch Tomboy.exe
  + Fix panel and TrayIcon resizing
  + Fix 1x1 pixel TrayIcon
  + Removed old tintin image
* debian/control:
  + Update build dependencies
* debian/patches/01-dbus0.9.patch,
  debian/patches/50_tintin.patch,
  debian/patches/51_tomboy-dllmap.patch,
  debian/patches/52_external-dbus-sharp.patch,
  debian/patches/53_tomboy-tray-icon.patch:
  + Dropped, merged upstream
* debian/rules,
  debian/tomboy.desktop:
  + Use upstream's desktop file again after it was fixed now
* debian/rules:
  + DBus service file path workaround removed, it's fixed upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
using System;
2
 
 
3
 
namespace DBus
4
 
{
5
 
  [AttributeUsage(AttributeTargets.Class, AllowMultiple=false, Inherited=true)]
6
 
  public class InterfaceAttribute : Attribute 
7
 
  {
8
 
    private string interfaceName;
9
 
 
10
 
    public InterfaceAttribute(string interfaceName) 
11
 
    {
12
 
      this.interfaceName = interfaceName;
13
 
    }
14
 
 
15
 
    public string InterfaceName
16
 
    {
17
 
      get
18
 
        {
19
 
          return this.interfaceName;
20
 
        }
21
 
    }
22
 
  }
23
 
}