[Xfce4-commits] <postler:master> Mark overridden methods in FlowBox as public
Christian Dywan
noreply at xfce.org
Sun Feb 20 22:22:01 CET 2011
Updating branch refs/heads/master
to a55fb210a90e0c25e61fbf4128831a1931b1ac53 (commit)
from 2197b09cef817157231208bda89086d89e836f67 (commit)
commit a55fb210a90e0c25e61fbf4128831a1931b1ac53
Author: Sergio Spinatelli <spinatelli.sergio at gmail.com>
Date: Sun Feb 20 22:20:48 2011 +0100
Mark overridden methods in FlowBox as public
postler/postler-flowbox.vala | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/postler/postler-flowbox.vala b/postler/postler-flowbox.vala
index 5b5e119..b1988c3 100644
--- a/postler/postler-flowbox.vala
+++ b/postler/postler-flowbox.vala
@@ -19,14 +19,14 @@ namespace Postler {
set_has_window (false);
}
- override void add (Gtk.Widget widget) {
+ public override void add (Gtk.Widget widget) {
children.append (widget);
widget.set_parent (this);
if (get_realized ())
widget.realize ();
}
- override void remove (Gtk.Widget widget) {
+ public override void remove (Gtk.Widget widget) {
children.remove (widget);
widget.unparent ();
if (widget.get_realized ())
@@ -34,7 +34,7 @@ namespace Postler {
queue_resize ();
}
- override void forall_internal (bool internal, Gtk.Callback callback) {
+ public override void forall_internal (bool internal, Gtk.Callback callback) {
foreach (var child in children)
callback (child);
}
More information about the Xfce4-commits
mailing list