Compare commits

...

1 Commits

Author SHA1 Message Date
Gergely Polonkai 009c17b6e2 Attempt to transition to Vala 2016-04-27 21:13:30 +02:00
2 changed files with 26 additions and 0 deletions

13
src/ag-header-bar.vala Normal file
View File

@ -0,0 +1,13 @@
namespace Ag {
class HeaderBar: Gtk.HeaderBar {
public void clear()
{
custom_title = null;
foreach (Gtk.Widget w in get_children()) {
w.hide();
}
}
}
}

13
src/widgets.vala Normal file
View File

@ -0,0 +1,13 @@
namespace Ag {
public class HeaderBar : Gtk.HeaderBar {
public void clear()
{
custom_title = null;
foreach (Gtk.Widget w in get_children()) {
w.hide();
}
}
}
}