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

« back to all changes in this revision

Viewing changes to Tomboy/Note.cs

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2007-02-09 22:48:43 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20070209224843-yfbivwi3cg0s5a71
Tags: 0.5.6-0ubuntu1
* New upstream release:
  + This is a bugfix-only release...
  + Fix multi-line indent in bulleted lists (#402338).
  + Fix panel icon sizing (#354416, #403500).
  + Fix search window timestamp when notes are changed (#378400).
  + Fix problem of formatting being applied to bullet chars (#403026).
  + Fix crashes opening help and preferences dialog from menu (#403290).
  + Fix to prevent note title from being bulleted (#403408).
  + Fix non-translatable strings in plugins (Mathias Hasselmann, #387579).
  + Fix NoteOfTheDay title rename from "NotD" to "Today".
  + And others (#356448, #403033, #403745)
* Tomboy/NoteTag.cs:
  + Fix wrong C# syntax that caused a FTBFS

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
namespace Tomboy
10
10
{
11
11
        public delegate void NoteRenameHandler (Note sender, string old_title);
 
12
        public delegate void NoteSavedHandler (Note note);
12
13
 
13
14
        // Contains all pure note data, like the note title and note text.
14
15
        public class NoteData
327
328
                        Logger.Log ("Saving '{0}'...", data.Data.Title);
328
329
 
329
330
                        NoteArchiver.Write (filepath, data.GetDataSynchronized ());
 
331
                        
 
332
                        if (Saved != null)
 
333
                                Saved (this);
330
334
                }
331
335
 
332
336
                //
644
648
 
645
649
                public event EventHandler Opened;
646
650
                public event NoteRenameHandler Renamed;
 
651
                public event NoteSavedHandler Saved;
647
652
        }
648
653
 
649
654
        // Singleton - allow overriding the instance for easy sensing in