fix compile error

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

View file

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

View file

@ -213,7 +213,7 @@ namespace SparkleShare {
// Update the address field text when the selection changes
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
};