summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2011-11-30 16:50:17 -0500
committerRyan Lortie <desrt@desrt.ca>2011-12-19 12:51:08 -0500
commit32508ee82576f871ba74ab5082124398adc02a30 (patch)
tree75e2240cc74a023867363fcbb30e5ee5c16de015 /examples
parent8ae792170801401fd9b95920b39cf8f86a4c4afc (diff)
downloadgtk+-32508ee82576f871ba74ab5082124398adc02a30.tar.gz
Drop an unused variable
Diffstat (limited to 'examples')
-rw-r--r--examples/bloatpad.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/bloatpad.c b/examples/bloatpad.c
index d6e549b704..4632c39c16 100644
--- a/examples/bloatpad.c
+++ b/examples/bloatpad.c
@@ -50,7 +50,6 @@ new_window (GApplication *app,
GFile *file)
{
GtkWidget *window, *button, *grid, *scrolled, *view;
- GtkWidget *menu;
window = gtk_application_window_new (GTK_APPLICATION (app));
g_action_map_add_action_entries (G_ACTION_MAP (window), win_entries, G_N_ELEMENTS (win_entries), window);
@@ -220,7 +219,7 @@ bloat_pad_init (BloatPad *app)
static void
bloat_pad_class_init (BloatPadClass *class)
{
- G_OBJECT_CLASS (class)->finalize= bloat_pad_finalize;
+ G_OBJECT_CLASS (class)->finalize = bloat_pad_finalize;
G_APPLICATION_CLASS (class)->activate = bloat_pad_activate;
G_APPLICATION_CLASS (class)->open = bloat_pad_open;