~ubuntu-branches/debian/sid/docky/sid

« back to all changes in this revision

Viewing changes to Docky.DBus/Docky.DBus/RemoteMenuEntry.cs

  • Committer: Package Import Robot
  • Author(s): Rico Tzschichholz
  • Date: 2012-01-19 19:03:38 UTC
  • mfrom: (1.1.14) (10.1.9 experimental)
  • Revision ID: package-import@ubuntu.com-20120119190338-n44q7tmqsrkudvk7
Tags: 2.1.3-2
* Upload to unstable
* debian/watch:
  + Look for xz tarballs from now on

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
//  
2
2
//  Copyright (C) 2009 Jason Smith, Robert Dyer
 
3
//  Copyright (C) 2010 Chris Szikszoy
3
4
// 
4
5
//  This program is free software: you can redistribute it and/or modify
5
6
//  it under the terms of the GNU General Public License as published by
26
27
                public uint ID { get; private set; }
27
28
                public string Title { get; private set; }
28
29
 
29
 
                public RemoteMenuEntry (uint id, string name, string icon, string groupTitle) : base(name, icon)
 
30
                public RemoteMenuEntry (string name, string icon, string groupTitle) : base(name, icon)
30
31
                {
31
 
                        ID = id;
 
32
                        ID = (uint) DateTime.Now.Ticks;
32
33
                        Title = groupTitle;
33
34
                        Mnemonic = null;
34
35
                }