X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;ds=sidebyside;f=examples%2Fhildon-vvolumebar-example.c;h=19dadeae272ff277dcb0f25d4a2517155198617c;hb=d1d98a785388888304e9375989fb61f524d108d1;hp=b1ff9753dd13b9a7bcb4a1e8e4859ecd730b792f;hpb=9a72097d241dc0f1e8b451eeee5f8ba75f0831a9;p=hildon diff --git a/examples/hildon-vvolumebar-example.c b/examples/hildon-vvolumebar-example.c index b1ff975..19dadea 100644 --- a/examples/hildon-vvolumebar-example.c +++ b/examples/hildon-vvolumebar-example.c @@ -8,7 +8,7 @@ * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; version 2.1 of - * the License. + * the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of @@ -26,17 +26,18 @@ #include #include #include -#include "hildon.h" +#include int -main (int argc, - char **args) +main (int argc, + char **argv) { - gtk_init (&argc, &args); - + hildon_gtk_init (&argc, &argv); + GtkDialog *dialog = GTK_DIALOG (gtk_dialog_new ()); HildonVVolumebar *bar = HILDON_VVOLUMEBAR (hildon_vvolumebar_new ()); + gtk_widget_set_size_request (GTK_WIDGET (bar), -1, 300); gtk_box_pack_start (GTK_BOX (dialog->vbox), GTK_WIDGET (bar), FALSE, FALSE, 0); gtk_dialog_add_button (dialog, "Close", GTK_RESPONSE_CLOSE);