diff options
author | Alexey Yakovenko <wakeroid@gmail.com> | 2010-01-07 21:32:31 +0100 |
---|---|---|
committer | Alexey Yakovenko <wakeroid@gmail.com> | 2010-01-07 21:32:31 +0100 |
commit | 33e70ba77e6b2066df26dd2ef46d0ec1df149a1a (patch) | |
tree | 285316f56614fe52df76ee1e5746b6d875008929 /plugins | |
parent | acff47388e6471facd73e7b41e9c94f5cda7ee11 (diff) |
moved documentation files around
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/gtkui/callbacks.c | 4 | ||||
-rw-r--r-- | plugins/gtkui/deadbeef.glade | 4 | ||||
-rw-r--r-- | plugins/gtkui/interface.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/plugins/gtkui/callbacks.c b/plugins/gtkui/callbacks.c index d2882b70..e2453bb6 100644 --- a/plugins/gtkui/callbacks.c +++ b/plugins/gtkui/callbacks.c @@ -1408,7 +1408,7 @@ void on_gpl1_activate (GtkMenuItem *menuitem, gpointer user_data) { - show_info_window (DOCDIR "/COPYING", "GNU GENERAL PUBLIC LICENSE Version 2", &gplwindow); + show_info_window (DOCDIR "/COPYING.GPLv2", "GNU GENERAL PUBLIC LICENSE Version 2", &gplwindow); } static GtkWidget *lgplwindow; @@ -1417,7 +1417,7 @@ void on_lgpl1_activate (GtkMenuItem *menuitem, gpointer user_data) { - show_info_window (DOCDIR "/lgpl-2.1.txt", "GNU LESSER GENERAL PUBLIC LICENSE Version 2.1", &lgplwindow); + show_info_window (DOCDIR "/COPYING.LGPLv2.1", "GNU LESSER GENERAL PUBLIC LICENSE Version 2.1", &lgplwindow); } diff --git a/plugins/gtkui/deadbeef.glade b/plugins/gtkui/deadbeef.glade index 811b013b..cfd07055 100644 --- a/plugins/gtkui/deadbeef.glade +++ b/plugins/gtkui/deadbeef.glade @@ -540,7 +540,7 @@ <child> <widget class="GtkMenuItem" id="gpl1"> <property name="visible">True</property> - <property name="label" translatable="yes">_GPL</property> + <property name="label" translatable="yes">_GPLv2</property> <property name="use_underline">True</property> <signal name="activate" handler="on_gpl1_activate" last_modification_time="Wed, 06 Jan 2010 20:30:20 GMT"/> </widget> @@ -549,7 +549,7 @@ <child> <widget class="GtkMenuItem" id="lgpl1"> <property name="visible">True</property> - <property name="label" translatable="yes">_LGPL</property> + <property name="label" translatable="yes">_LGPLv2.1</property> <property name="use_underline">True</property> <signal name="activate" handler="on_lgpl1_activate" last_modification_time="Wed, 06 Jan 2010 20:30:20 GMT"/> </widget> diff --git a/plugins/gtkui/interface.c b/plugins/gtkui/interface.c index fa26a5c8..0b614e97 100644 --- a/plugins/gtkui/interface.c +++ b/plugins/gtkui/interface.c @@ -389,11 +389,11 @@ create_mainwin (void) gtk_container_add (GTK_CONTAINER (menuitem4_menu), separator10); gtk_widget_set_sensitive (separator10, FALSE); - gpl1 = gtk_menu_item_new_with_mnemonic ("_GPL"); + gpl1 = gtk_menu_item_new_with_mnemonic ("_GPLv2"); gtk_widget_show (gpl1); gtk_container_add (GTK_CONTAINER (menuitem4_menu), gpl1); - lgpl1 = gtk_menu_item_new_with_mnemonic ("_LGPL"); + lgpl1 = gtk_menu_item_new_with_mnemonic ("_LGPLv2.1"); gtk_widget_show (lgpl1); gtk_container_add (GTK_CONTAINER (menuitem4_menu), lgpl1); |