Make the view's stack_panel property nullable

This commit is contained in:
Techlive Zheng 2013-05-31 01:18:53 +08:00 committed by Ignacio Casal Quinteiro
parent 1f91efbf9b
commit 671d2f7a2b
2 changed files with 3 additions and 3 deletions

View file

@ -92,10 +92,10 @@ public interface View : Object, UIElement
* A Gtk Builder element that the panel plugins will be
* populated into.
*
* @return Gtk.Stack
* @return Gtk.Stack?
*
*/
public abstract Gtk.Stack stack_panel { get; }
public abstract Gtk.Stack? stack_panel { get; }
}
}

View file

@ -45,7 +45,7 @@ namespace GitgHistory
owned get { return "/org/gnome/gitg/Views/History"; }
}
public Gtk.Stack stack_panel
public Gtk.Stack? stack_panel
{
get { return d_stack_panel; }
}