From: Michael Dominic Kostrzewa Date: Mon, 12 Feb 2007 11:39:53 +0000 (+0000) Subject: Adding some title setting to check the program/window naming. X-Git-Tag: 2.1.66-1~948 X-Git-Url: http://git.maemo.org/git/?a=commitdiff_plain;h=f9518243d09bdec21238e6880691dd2b5d9f09ce;p=hildon Adding some title setting to check the program/window naming. --- diff --git a/ChangeLog.2 b/ChangeLog.2 index c1cd5fb..8d2b8f1 100644 --- a/ChangeLog.2 +++ b/ChangeLog.2 @@ -1,5 +1,10 @@ 2007-02-12 Michael Dominic Kostrzewa + * examples/hildon-window-example.c: Adding some title setting to check + the program/window naming. + +2007-02-12 Michael Dominic Kostrzewa + * doc/Makefile.am: * doc/hildon-docs.sgml: * doc/visual_index.xml: Adding the widgets-gallery chapter. Works now. diff --git a/examples/hildon-window-example.c b/examples/hildon-window-example.c index 25dc9bd..43dba40 100644 --- a/examples/hildon-window-example.c +++ b/examples/hildon-window-example.c @@ -39,6 +39,9 @@ main (int argc, GtkWidget *window = hildon_window_new (); hildon_program_add_window (program, HILDON_WINDOW (window)); + gtk_window_set_title (GTK_WINDOW (window), "world"); + g_set_application_name ("hello"); + gtk_container_set_border_width (GTK_CONTAINER (window), 6); GtkWidget *label = GTK_WIDGET (gtk_label_new ("Hello world!"));