diff options
| author | Jabier Arraiza <jabier.arraiza@marker.es> | 2018-11-10 10:02:10 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2018-11-10 10:02:10 +0000 |
| commit | a2fead98e52d28db627303fb8df03d1f5af7d733 (patch) | |
| tree | d8fe9f801dab2d236b32d5863ce7293fa6d1de89 /src | |
| parent | Snap: Fix file loading with path with spaces (diff) | |
| download | inkscape-a2fead98e52d28db627303fb8df03d1f5af7d733.tar.gz inkscape-a2fead98e52d28db627303fb8df03d1f5af7d733.zip | |
Chage std::cout to g_warning
Diffstat (limited to 'src')
| -rw-r--r-- | src/ui/icon-loader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/icon-loader.cpp b/src/ui/icon-loader.cpp index d42cb7837..fae3fba70 100644 --- a/src/ui/icon-loader.cpp +++ b/src/ui/icon-loader.cpp @@ -57,14 +57,14 @@ Glib::RefPtr<Gdk::Pixbuf> sp_get_icon_pixbuf(Glib::ustring icon_name, gint size) else { _icon_pixbuf = icon_theme->load_icon(icon_name, size, Gtk::ICON_LOOKUP_FORCE_SIZE); } - std::cout << "Icon Loader using a future dead function in this icon: " << icon_name << std::endl; + g_warning("Icon Loader using a future dead function in this icon: %s", icon_name); } else { _icon_pixbuf = icon_theme->load_icon(icon_name, size, Gtk::ICON_LOOKUP_FORCE_SIZE); } } catch (const Gtk::IconThemeError &e) { - std::cout << "Icon Loader error loading icon file: " << e.what() << std::endl; + g_warning("Icon Loader error loading icon file: %s", e.what()); } return _icon_pixbuf; } |
