diff options
author | Alessandro Ghedini <al3xbio@gmail.com> | 2012-03-19 16:35:30 +0100 |
---|---|---|
committer | Alessandro Ghedini <al3xbio@gmail.com> | 2012-03-19 16:35:30 +0100 |
commit | a248b1597394b4ee9a5817bc95c3c116e76cdd8f (patch) | |
tree | 338596cb8c179435c51b8954adb933462c54a5d6 /src/images/icon.vala | |
parent | 662bede321e96bef873eadb7882dbcad5f68ba95 (diff) |
Imported Upstream version 0.5.2
Diffstat (limited to 'src/images/icon.vala')
-rw-r--r-- | src/images/icon.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/images/icon.vala b/src/images/icon.vala index e942e7c..42be41f 100644 --- a/src/images/icon.vala +++ b/src/images/icon.vala @@ -105,7 +105,7 @@ public class Icon : Image { return icon_name; warning("Icon \"" + icon_name + "\" not found! Using default icon..."); - icon_name = "application-default-icon"; + icon_name = "stock_unknown"; } @@ -115,7 +115,7 @@ public class Icon : Image { if (result == "") { warning("Icon \"" + icon_name + "\" not found! Using default icon..."); - icon_name = "application-default-icon"; + icon_name = "stock_unknown"; file = icon_theme.lookup_icon(icon_name, size, 0); if (file != null) result = file.get_filename(); } |