Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
GIMP
Commits
ccd6e316
Commit
ccd6e316
authored
Jan 04, 2016
by
Michael Natterer
😴
Browse files
libgimpwidgets: use g_printerr() not g_warning() for wrong icon theme paths
parent
31a15570
Changes
1
Hide whitespace changes
Inline
Side-by-side
libgimpwidgets/gimpicons.c
View file @
ccd6e316
...
...
@@ -425,8 +425,8 @@ gimp_icons_set_icon_theme (GFile *path)
if
(
!
g_file_query_exists
(
path
,
NULL
))
{
g_
warning
(
"
Icon theme path does not exist: %s"
,
gimp_file_get_utf8_name
(
path
));
g_
printerr
(
"%s:
Icon theme path does not exist: %s
\n
"
,
G_STRFUNC
,
gimp_file_get_utf8_name
(
path
));
}
else
{
...
...
@@ -434,8 +434,8 @@ gimp_icons_set_icon_theme (GFile *path)
if
(
!
g_file_query_exists
(
hicolor
,
NULL
))
{
g_
warning
(
"
Icon theme path has no 'hicolor' subdirectory: %s"
,
gimp_file_get_utf8_name
(
path
));
g_
printerr
(
"%s:
Icon theme path has no 'hicolor' subdirectory: %s
\n
"
,
G_STRFUNC
,
gimp_file_get_utf8_name
(
path
));
}
else
{
...
...
@@ -443,8 +443,8 @@ gimp_icons_set_icon_theme (GFile *path)
if
(
!
g_file_query_exists
(
index
,
NULL
))
{
g_
warning
(
"
Icon theme path has no 'hicolor/index.theme': %s"
,
gimp_file_get_utf8_name
(
path
));
g_
printerr
(
"%s:
Icon theme path has no 'hicolor/index.theme': %s
\n
"
,
G_STRFUNC
,
gimp_file_get_utf8_name
(
path
));
}
else
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment