Mercurial > audlegacy
annotate Plugins/Output/OSS/about.c @ 416:cb00a4b01302 trunk
[svn] Convert to produce_audio usage.
| author | chainsaw |
|---|---|
| date | Tue, 10 Jan 2006 16:50:39 -0800 |
| parents | 256b3acc87d4 |
| children | f12d7e208b43 |
| rev | line source |
|---|---|
| 61 | 1 /* BMP - Cross-platform multimedia player |
| 2 * Copyright (C) 2003-2004 BMP development team. | |
| 3 * | |
| 4 * Based on XMMS: | |
| 5 * Copyright (C) 1998-2003 XMMS development team. | |
| 6 * | |
| 7 * This program is free software; you can redistribute it and/or modify | |
| 8 * it under the terms of the GNU General Public License as published by | |
| 9 * the Free Software Foundation; either version 2 of the License, or | |
| 10 * (at your option) any later version. | |
| 11 * | |
| 12 * This program is distributed in the hope that it will be useful, | |
| 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 * GNU General Public License for more details. | |
| 16 * | |
| 17 * You should have received a copy of the GNU General Public License | |
| 18 * along with this program; if not, write to the Free Software | |
| 19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | |
| 20 */ | |
| 21 | |
| 22 #include "OSS.h" | |
| 23 | |
| 24 #include <glib.h> | |
| 25 #include <glib/gi18n.h> | |
| 26 #include <gtk/gtk.h> | |
| 27 | |
| 28 #include <libaudacious/util.h> | |
| 29 | |
| 30 | |
| 31 void | |
| 32 oss_about(void) | |
| 33 { | |
| 34 static GtkWidget *dialog; | |
| 35 | |
| 36 if (dialog != NULL) | |
| 37 return; | |
| 38 | |
| 39 dialog = xmms_show_message(_("About OSS Driver"), | |
|
257
256b3acc87d4
[svn] Properly report Audacious instead of XMMS or BMP in all places. Patch by laci; closes bug #379.
chainsaw
parents:
61
diff
changeset
|
40 _("Audacious OSS Driver\n\n " |
| 61 | 41 "This program is free software; you can redistribute it and/or modify\n" |
| 42 "it under the terms of the GNU General Public License as published by\n" | |
| 43 "the Free Software Foundation; either version 2 of the License, or\n" | |
| 44 "(at your option) any later version.\n" | |
| 45 "\n" | |
| 46 "This program is distributed in the hope that it will be useful,\n" | |
| 47 "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" | |
| 48 "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" | |
| 49 "GNU General Public License for more details.\n" | |
| 50 "\n" | |
| 51 "You should have received a copy of the GNU General Public License\n" | |
| 52 "along with this program; if not, write to the Free Software\n" | |
| 53 "Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,\n" | |
| 54 "USA."), _("Ok"), FALSE, NULL, NULL); | |
| 55 g_signal_connect(G_OBJECT(dialog), "destroy", | |
| 56 G_CALLBACK(gtk_widget_destroyed), &dialog); | |
| 57 } |
