diff options
Diffstat (limited to 'examples/vala/simple-bar/app.vala')
-rw-r--r-- | examples/vala/simple-bar/app.vala | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/examples/vala/simple-bar/app.vala b/examples/vala/simple-bar/app.vala deleted file mode 100644 index ccd3957..0000000 --- a/examples/vala/simple-bar/app.vala +++ /dev/null @@ -1,14 +0,0 @@ -class Application : Astal.Application { - Application() { - - } - - public override void activate () { - this.add_window(new Bar()); - } - - public static int main() { - var app = new Application(); - return app.run(null); - } -} |