diff options
author | Nikias Bassen | 2010-02-01 01:40:19 +0100 |
---|---|---|
committer | Martin Szulecki | 2010-02-01 01:48:19 +0100 |
commit | 63624f91954534232279c67c10b79634f1884114 (patch) | |
tree | 2a2eb81ffcdbab8143be05f45e9e97f5ae4cd47a | |
parent | a45244afa72841c8e0b0ee6f711e37883f888899 (diff) | |
download | sbmanager-63624f91954534232279c67c10b79634f1884114.tar.gz sbmanager-63624f91954534232279c67c10b79634f1884114.tar.bz2 |
Fix segfault on gui init with newer clutter version
-rw-r--r-- | src/gui.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |