~ubuntu-branches/ubuntu/lucid/tomboy/lucid-proposed

« back to all changes in this revision

Viewing changes to Tomboy/RecentChanges.cs

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-01-28 14:11:49 UTC
  • mto: (47.1.1 lucid-proposed)
  • mto: This revision was merged to the branch mainline in revision 40.
  • Revision ID: james.westby@ubuntu.com-20100128141149-1mb0c4cxhm1penf0
Tags: upstream-1.1.1
ImportĀ upstreamĀ versionĀ 1.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
682
682
 
683
683
                void OnNotebookRowEdited (object sender, Gtk.EditedArgs args)
684
684
                {
685
 
                        if (Notebooks.NotebookManager.NotebookExists (args.NewText))
 
685
                        if (Notebooks.NotebookManager.NotebookExists (args.NewText) ||
 
686
                            string.IsNullOrEmpty (args.NewText))
686
687
                                return;
687
688
                        var oldNotebook = GetSelectedNotebook ();
688
689
                        if (oldNotebook is Notebooks.SpecialNotebook)