summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2012-05-08 22:03:26 +0200
committerGravatar waker <wakeroid@gmail.com>2012-05-08 22:03:26 +0200
commitd82ea1fea56d9d77dc047cbfd61fe126b5f0e2eb (patch)
tree1df31ee11f083ee40cee9827053e696138741efc /plugins
parent7393ba274256a37a8a36c61fcd1b375693d16f93 (diff)
fixed convgui and shellexecui titles
Diffstat (limited to 'plugins')
-rw-r--r--plugins/converter/convgui.c6
-rw-r--r--plugins/shellexecui/shellexecui.c7
2 files changed, 9 insertions, 4 deletions
diff --git a/plugins/converter/convgui.c b/plugins/converter/convgui.c
index ad7fa4c4..1e75f1b0 100644
--- a/plugins/converter/convgui.c
+++ b/plugins/converter/convgui.c
@@ -1326,7 +1326,11 @@ DB_misc_t plugin = {
.plugin.version_major = 1,
.plugin.version_minor = 1,
.plugin.type = DB_PLUGIN_MISC,
- .plugin.name = "Converter GTK UI",
+#if GTK_CHECK_VERSION(3,0,0)
+ .plugin.name = "Converter GTK3 UI",
+#else
+ .plugin.name = "Converter GTK2 UI",
+#endif
.plugin.descr = "GTK2 User interface for the Converter plugin\n"
"Usage:\n"
"ยท select some tracks in playlist\n"
diff --git a/plugins/shellexecui/shellexecui.c b/plugins/shellexecui/shellexecui.c
index 9a957dcb..b2a60230 100644
--- a/plugins/shellexecui/shellexecui.c
+++ b/plugins/shellexecui/shellexecui.c
@@ -404,11 +404,12 @@ static DB_misc_t plugin = {
.plugin.version_major = 1,
.plugin.version_minor = 0,
#if GTK_CHECK_VERSION(3,0,0)
- .plugin.id = "shellexecui_gtk2",
-#else
.plugin.id = "shellexecui_gtk3",
+ .plugin.name = "Shellexec GTK3 UI",
+#else
+ .plugin.id = "shellexecui_gtk2",
+ .plugin.name = "Shellexec GTK2 UI",
#endif
- .plugin.name = "Shellexec GTK UI",
.plugin.descr = "A GTK UI for the Shellexec plugin",
.plugin.copyright =
"Copyright (C) 2012 Azeem Arshad <kr00r4n@gmail.com>\n"