updated on Mon Jan 16 12:07:49 UTC 2012
[aur-mirror.git] / gloobus-preview / gcc46.patch
blob43b52b3918fbd740895195929bc9ac68b9d3f48e
1 === modified file 'src/gloobus-preview-theme.cpp'
2 --- src/gloobus-preview-theme.cpp 2010-05-28 13:27:34 +0000
3 +++ src/gloobus-preview-theme.cpp 2011-05-13 11:08:34 +0000
4 @@ -409,7 +409,6 @@
5 load_default();
6 loaded = true;
8 - bool ok;
9 path = config->get_theme();
10 if(path == NULL) return;
11 gchar *xml_path = g_strconcat(path,"/","theme.xml",NULL);
12 @@ -419,7 +418,7 @@
13 gchar text[size];
14 gsize count;
15 GFileInputStream * stream = g_file_read(file, NULL, NULL);
16 - ok = g_input_stream_read_all(G_INPUT_STREAM(stream), text, size, &count, NULL, NULL);
17 + g_input_stream_read_all(G_INPUT_STREAM(stream), text, size, &count, NULL, NULL);
18 gssize text_len = (gssize)count;
20 GMarkupParser parser;