autorunManager: Fix another StIconType removal regression

https://bugzilla.gnome.org/show_bug.cgi?id=686079
This commit is contained in:
Florian Müllner 2012-10-13 14:29:06 +02:00
parent 4342155748
commit 0ac215f9de

View File

@ -410,7 +410,7 @@ const AutorunResidentNotification = new Lang.Class({
expand: true }); expand: true });
let ejectIcon = let ejectIcon =
new St.Icon({ icon_name: 'media-eject', new St.Icon({ icon_name: 'media-eject-symbolic',
style_class: 'hotplug-resident-eject-icon' }); style_class: 'hotplug-resident-eject-icon' });
let ejectButton = let ejectButton =
@ -611,7 +611,7 @@ const AutorunTransientNotification = new Lang.Class({
_buttonForEject: function() { _buttonForEject: function() {
let box = new St.BoxLayout(); let box = new St.BoxLayout();
let icon = new St.Icon({ icon_name: 'media-eject', let icon = new St.Icon({ icon_name: 'media-eject-symbolic',
style_class: 'hotplug-notification-item-icon' }); style_class: 'hotplug-notification-item-icon' });
box.add(icon); box.add(icon);