diff options
author | Alessandro Ghedini <al3xbio@gmail.com> | 2012-03-19 16:35:31 +0100 |
---|---|---|
committer | Alessandro Ghedini <al3xbio@gmail.com> | 2012-03-19 16:35:31 +0100 |
commit | 29a84e1125d507fcaf5d0cb39148ccaaa2d7ae58 (patch) | |
tree | 7d1c8e1c1b1d89af3a962671f60a422aa62af890 /src/images/icon.vala | |
parent | 178b4f90e26d6240aeaf5e455e4e78b3f4883bba (diff) | |
parent | a248b1597394b4ee9a5817bc95c3c116e76cdd8f (diff) |
Merge tag 'upstream/0.5.2'
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(); } |