]> Pileus Git - ~andy/gtk/blobdiff - tests/simple.c
stylecontext: Do invalidation on first resize container
[~andy/gtk] / tests / simple.c
index 6c2b5e9846b861f528d3dbd3933d6be8c732930f..6041fde82df798a890ebc709efd642a2014677e6 100644 (file)
@@ -13,9 +13,7 @@
  * Library General Public License for more details.
  *
  * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  */
 #include "config.h"
 #include <gtk/gtk.h>
@@ -31,27 +29,24 @@ int
 main (int argc, char *argv[])
 {
   GtkWidget *window;
-  GtkWidget *button;
 
-  /* FIXME: This is not allowable - what is this supposed to be? */
-  /*  gdk_progclass = g_strdup ("XTerm"); */
   gtk_init (&argc, &argv);
-  
+
   window = g_object_connect (g_object_new (gtk_window_get_type (),
-                                            "type", GTK_WINDOW_TOPLEVEL,
-                                            "title", "hello world",
-                                            "resizable", FALSE,
-                                            "border_width", 10,
-                                            NULL),
-                            "signal::destroy", gtk_main_quit, NULL,
-                            NULL);
-  button = g_object_connect (g_object_new (gtk_button_get_type (),
-                                            "GtkButton::label", "hello world",
-                                            "GtkWidget::parent", window,
-                                            "GtkWidget::visible", TRUE,
-                                            NULL),
-                            "signal::clicked", hello, NULL,
-                            NULL);
+                                           "type", GTK_WINDOW_TOPLEVEL,
+                                           "title", "hello world",
+                                           "resizable", FALSE,
+                                           "border_width", 10,
+                                           NULL),
+                             "signal::destroy", gtk_main_quit, NULL,
+                             NULL);
+  g_object_connect (g_object_new (gtk_button_get_type (),
+                                  "GtkButton::label", "hello world",
+                                  "GtkWidget::parent", window,
+                                  "GtkWidget::visible", TRUE,
+                                  NULL),
+                    "signal::clicked", hello, NULL,
+                    NULL);
   gtk_widget_show (window);
 
   gtk_main ();