~cszikszoy/do-plugins/pastebin

« back to all changes in this revision

Viewing changes to Tomboy/src/TomboyItem.cs

* Cleanup Tomboy.
* Add Firefox.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//  TomboyItems.cs
 
1
//  NoteItem.cs
2
2
//
3
3
//  GNOME Do is the legal property of its developers, whose names are too numerous
4
4
//  to list here.  Please refer to the COPYRIGHT file distributed with this
22
22
 
23
23
namespace Tomboy
24
24
{
25
 
        public class TomboyItem : IOpenableItem
 
25
        public class NoteItem : IOpenableItem
26
26
        {
27
27
                string title;
28
28
                
32
32
                /// <param name="note_title">
33
33
                /// A <see cref="System.String"/>
34
34
                /// </param>
35
 
                public TomboyItem (string title)
 
35
                public NoteItem (string title)
36
36
                {
37
37
                        this.title = title;
38
38
                }