diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2010-05-19 08:58:23 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2018-05-31 22:43:05 +0200 |
commit | b76270bf9e6dd375e495fec92140a79a79415d27 (patch) | |
tree | 3dbed78b2279bf9f14207a16dc634b90995cbd40 /source/xap/xfce/patches/launcher-plugin-migrate-icon-cat.diff | |
parent | 5a12e7c134274dba706667107d10d231517d3e05 (diff) | |
download | current-b76270bf9e6dd375e495fec92140a79a79415d27.tar.gz |
Slackware 13.1slackware-13.1
Wed May 19 08:58:23 UTC 2010
Slackware 13.1 x86_64 stable is released!
Lots of thanks are due -- see the RELEASE_NOTES and the rest of the
ChangeLog for credits. The ISOs are on their way to replication,
a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD.
We are taking pre-orders now at store.slackware.com, and offering
a discount if you sign up for a subscription. Consider picking up
a copy to help support the project. Thanks again to the Slackware
community for testing, contributing, and generally holding us to a
high level of quality. :-)
Enjoy!
Diffstat (limited to 'source/xap/xfce/patches/launcher-plugin-migrate-icon-cat.diff')
-rw-r--r-- | source/xap/xfce/patches/launcher-plugin-migrate-icon-cat.diff | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/source/xap/xfce/patches/launcher-plugin-migrate-icon-cat.diff b/source/xap/xfce/patches/launcher-plugin-migrate-icon-cat.diff deleted file mode 100644 index 4370281a..00000000 --- a/source/xap/xfce/patches/launcher-plugin-migrate-icon-cat.diff +++ /dev/null @@ -1,48 +0,0 @@ -diff --git a/plugins/launcher/launcher.c b/plugins/launcher/launcher.c -index 8edc66c..1e370c4 100644 ---- a/plugins/launcher/launcher.c -+++ b/plugins/launcher/launcher.c -@@ -37,6 +37,30 @@ - #include "launcher-exec.h" - #include "launcher-dialog.h" - -+/* for 4.4 settings migration */ -+static const gchar *icon_category_map[] = { -+ "applications-other", -+ "accessories-text-editor", -+ "system-file-manager", -+ "applications-accessories", -+ "applications-games", -+ "help-browser", -+ "applications-multimedia", -+ "applications-internet", -+ "applications-graphics", -+ "printer", -+ "office-calendar", -+ "applications-office", -+ "audio-card", -+ "utilities-terminal", -+ "applications-development", -+ "preferences-desktop", -+ "applications-system", -+ "applications-other", -+ "applications-accessories", -+}; -+#define ICON_CATEGORY_MAP_MAX (G_N_ELEMENTS (icon_category_map) - 1) -+ - /* prototypes */ - static void launcher_utility_icon_theme_changed (GtkIconTheme *icon_theme, - LauncherPlugin *launcher); -@@ -1216,6 +1240,12 @@ launcher_plugin_read (LauncherPlugin *launcher) - entry->name = launcher_plugin_read_entry (rc, "Name"); - entry->comment = launcher_plugin_read_entry (rc, "Comment"); - entry->icon = launcher_plugin_read_entry (rc, "Icon"); -+ if (G_UNLIKELY (!entry->icon)) -+ { -+ gint icon_category = xfce_rc_read_int_entry (rc, "X-XFCE-IconCategory", -1); -+ if (G_LIKELY (icon_category >= 0 && icon_category <= ICON_CATEGORY_MAP_MAX)) -+ entry->icon = g_strdup (icon_category_map[icon_category]); -+ } - entry->exec = launcher_plugin_read_entry (rc, "Exec"); - entry->path = launcher_plugin_read_entry (rc, "Path"); - |