diff options
author | Bastien Nocera <hadess@hadess.net> | 2006-10-30 16:56:58 +0000 |
---|---|---|
committer | Bastien Nocera <hadess@src.gnome.org> | 2006-10-30 16:56:58 +0000 |
commit | d2a629335c32b292c87fb92d3cfac9dc1cd422a9 (patch) | |
tree | 1eee65a6201cc32750c2dbda9b3efdb78c84f45c /src/totem-subtitle-encoding.c | |
parent | e6239c751249dda3b669ba573a87adc4c0f76bed (diff) | |
download | totem-d2a629335c32b292c87fb92d3cfac9dc1cd422a9.tar.gz |
Set the Atk description on the statusbar whenever the status changes, or
2006-10-30 Bastien Nocera <hadess@hadess.net>
* src/totem-statusbar.c: (totem_statusbar_init),
(totem_statusbar_new_from_glade), (totem_statusbar_update_time),
(totem_statusbar_set_text), (totem_statusbar_timeout_pop),
(totem_statusbar_push), (totem_statusbar_pop),
(totem_statusbar_set_seeking), (totem_statusbar_sync_description):
* src/totem-statusbar.h:
Set the Atk description on the statusbar whenever the status changes,
or we're buffering
* src/totem-subtitle-encoding.c: (subtitle_encoding_create_store):
identation changes
Diffstat (limited to 'src/totem-subtitle-encoding.c')
-rw-r--r-- | src/totem-subtitle-encoding.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/totem-subtitle-encoding.c b/src/totem-subtitle-encoding.c index 8243229d7..693914b6b 100644 --- a/src/totem-subtitle-encoding.c +++ b/src/totem-subtitle-encoding.c @@ -499,11 +499,11 @@ subtitle_encoding_create_store (void) gtk_tree_store_set (store, &iter, INDEX_COL, -1, NAME_COL, lastlang, -1); } - label = g_strdup_printf("%s (%s)", lastlang, encodings[i].charset); + label = g_strdup_printf("%s (%s)", lastlang, encodings[i].charset); gtk_tree_store_append (store, &iter2, &iter); gtk_tree_store_set (store, &iter2, INDEX_COL, encodings[i].index, NAME_COL, label, -1); - g_free(label); + g_free(label); } } gtk_tree_sortable_set_default_sort_func (GTK_TREE_SORTABLE (store), |