Make it compile on recent Vala and remove some warnings
[libprolooks.git] / demos / SmallButtonDemo.vala
blob57f42baecf5b66c069329f862bba3f47e88a6959
1 /*
2 Copyright 2009 by Hans Baier
3 License: LGPLv2+
4 */
6 using Gtk;
7 using Gdk;
9 // template for new widgets
11 namespace Prolooks {
13 static int main (string[] args) {
14 Gtk.init (ref args);
15 var window = new Gtk.Window (Gtk.WindowType.TOPLEVEL);
16 var widget = new SmallButton ();
17 widget.color = "#10a010";
18 window.add (widget);
19 window.destroy.connect(Gtk.main_quit);
20 window.show_all ();
21 Gtk.main ();
22 return 0;
25 } // namespace Prolooks