forked from AuroraMiddleware/gtk
Avoid compiler warnings
This commit is contained in:
parent
5adfe6029d
commit
897c370f5f
@ -153,7 +153,8 @@
|
|||||||
* </para>
|
* </para>
|
||||||
* <para>
|
* <para>
|
||||||
* Refer to the documentation of individual widgets to learn which
|
* Refer to the documentation of individual widgets to learn which
|
||||||
* style classes they define.
|
* style classes they define and see <xref linkend="gtkstylecontext-classes"/>
|
||||||
|
* for a list of all style classes used by GTK+ widgets.
|
||||||
* </para>
|
* </para>
|
||||||
* <example>
|
* <example>
|
||||||
* <title>Style classes in selectors</title>
|
* <title>Style classes in selectors</title>
|
||||||
@ -2395,7 +2396,8 @@ path_parse_str (GtkCssProvider *css_provider,
|
|||||||
const gchar *str,
|
const gchar *str,
|
||||||
gchar **end_ptr)
|
gchar **end_ptr)
|
||||||
{
|
{
|
||||||
gchar *path, *chr, *start, *end;
|
gchar *path, *chr;
|
||||||
|
const gchar *start, *end;
|
||||||
|
|
||||||
start = str;
|
start = str;
|
||||||
|
|
||||||
@ -2424,7 +2426,7 @@ path_parse_str (GtkCssProvider *css_provider,
|
|||||||
|
|
||||||
if (*str == '"' || *str == '\'')
|
if (*str == '"' || *str == '\'')
|
||||||
{
|
{
|
||||||
gchar *p;
|
const gchar *p;
|
||||||
p = str;
|
p = str;
|
||||||
str++;
|
str++;
|
||||||
|
|
||||||
@ -2433,25 +2435,25 @@ path_parse_str (GtkCssProvider *css_provider,
|
|||||||
|
|
||||||
if (*chr != *p || chr == p)
|
if (*chr != *p || chr == p)
|
||||||
{
|
{
|
||||||
*end_ptr = str;
|
*end_ptr = (gchar *)str;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
*end_ptr = str;
|
*end_ptr = (gchar *)str;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
path = g_strndup (str, chr - str);
|
path = g_strndup (str, chr - str);
|
||||||
g_strstrip (path);
|
g_strstrip (path);
|
||||||
|
|
||||||
*end_ptr = end;
|
*end_ptr = (gchar *)end;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
path = g_strdup (str);
|
path = g_strdup (str);
|
||||||
*end_ptr = str + strlen (str);
|
*end_ptr = (gchar *)str + strlen (str);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Always return an absolute path */
|
/* Always return an absolute path */
|
||||||
@ -2480,7 +2482,7 @@ path_parse_str (GtkCssProvider *css_provider,
|
|||||||
g_warning ("File doesn't exist: %s\n", path);
|
g_warning ("File doesn't exist: %s\n", path);
|
||||||
g_free (path);
|
g_free (path);
|
||||||
path = NULL;
|
path = NULL;
|
||||||
*end_ptr = start;
|
*end_ptr = (gchar *)start;
|
||||||
}
|
}
|
||||||
|
|
||||||
return path;
|
return path;
|
||||||
@ -2490,7 +2492,8 @@ static gchar *
|
|||||||
path_parse (GtkCssProvider *css_provider,
|
path_parse (GtkCssProvider *css_provider,
|
||||||
const gchar *str)
|
const gchar *str)
|
||||||
{
|
{
|
||||||
gchar *path, *end;
|
gchar *path;
|
||||||
|
gchar *end;
|
||||||
|
|
||||||
path = path_parse_str (css_provider, str, &end);
|
path = path_parse_str (css_provider, str, &end);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user