fix compile error

This commit is contained in:
Hylke Bons 2011-11-30 11:35:45 +01:00
parent 0d38e7ef5e
commit 608e0e1c97
2 changed files with 1 additions and 2 deletions

View file

@ -214,7 +214,6 @@ namespace SparkleShare {
new public void Quit () new public void Quit ()
{ {
this.watcher.Dispose (); this.watcher.Dispose ();
NSApplication.SharedApplication.Terminate (new NSObject ());
base.Quit (); base.Quit ();
} }
} }

View file

@ -213,7 +213,7 @@ namespace SparkleShare {
// Update the address field text when the selection changes // Update the address field text when the selection changes
tree.CursorChanged += delegate (object sender, EventArgs e) { tree.CursorChanged += delegate (object sender, EventArgs e) {
Controller.SelectedPluginChanged ((sender as TreeView).SelectedRow); Controller.SelectedPluginChanged (tree.SelectedRow);
// TODO: Scroll to selected row when using arrow keys // TODO: Scroll to selected row when using arrow keys
}; };