summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2010-02-01 01:40:19 +0100
committerGravatar Martin Szulecki2010-02-01 01:48:19 +0100
commit63624f91954534232279c67c10b79634f1884114 (patch)
tree2a2eb81ffcdbab8143be05f45e9e97f5ae4cd47a /src
parenta45244afa72841c8e0b0ee6f711e37883f888899 (diff)
downloadsbmanager-63624f91954534232279c67c10b79634f1884114.tar.gz
sbmanager-63624f91954534232279c67c10b79634f1884114.tar.bz2
Fix segfault on gui init with newer clutter version
Diffstat (limited to 'src')
-rw-r--r--src/gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui.c b/src/gui.c
index 6538e79..910e8dc 100644
--- a/src/gui.c
+++ b/src/gui.c
@@ -1283,7 +1283,7 @@ GtkWidget *gui_init()
}
/* Create device type widget */
- type_label = clutter_text_new_full(CLOCK_FONT, NULL, &clock_text_color);
+ type_label = clutter_text_new_full(CLOCK_FONT, "", &clock_text_color);
clutter_group_add(CLUTTER_GROUP(stage), type_label);
clutter_actor_set_position(type_label, 3.0, 2.0);