docs/plugin-api/Makefile.am | 4 ++-- src/gst/parole-gst.c | 18 +----------------- 2 files changed, 3 insertions(+), 19 deletions(-) diff --git a/docs/plugin-api/Makefile.am b/docs/plugin-api/Makefile.am index 51f13d2..11f1bc5 100644 --- a/docs/plugin-api/Makefile.am +++ b/docs/plugin-api/Makefile.am @@ -71,11 +71,11 @@ GTKDOC_CFLAGS= \ -I$(top_builddir)/src/misc GTKDOC_LIBS= \ + $(top_builddir)/src/misc/libparole.la \ $(GTK_LIBS) \ $(GLIB_LIBS) \ $(GOBJECT_LIBS) \ - $(TAGLIBC_LIBS) \ - $(top_builddir)/src/misc/libparole.la + $(TAGLIBC_LIBS) if ENABLE_GTK_DOC include $(top_srcdir)/gtk-doc.make diff --git a/src/gst/parole-gst.c b/src/gst/parole-gst.c index be94371..1ee7eb0 100644 --- a/src/gst/parole-gst.c +++ b/src/gst/parole-gst.c @@ -1329,34 +1329,18 @@ parole_gst_missing_codec_dialog(ParoleGst *gst, GstMessage *msg) { dialog = GTK_MESSAGE_DIALOG(gtk_message_dialog_new_with_markup( NULL, GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT, -#if defined(__linux__) - GTK_MESSAGE_QUESTION, -#else GTK_MESSAGE_WARNING, -#endif GTK_BUTTONS_NONE, "%s", _("Additional software is required."))); gtk_dialog_add_buttons(GTK_DIALOG(dialog), -#if defined(__linux__) - _("Don't Install"), - GTK_RESPONSE_REJECT, - _("Install"), - GTK_RESPONSE_ACCEPT, -#else _("OK"), GTK_RESPONSE_ACCEPT, -#endif - NULL); + NULL ); gtk_message_dialog_format_secondary_markup(dialog, -#if defined(__linux__) - _("Parole needs %s to play this file.\n" - "It can be installed automatically."), -#else _("Parole needs %s to play this file."), -#endif desc); return GTK_DIALOG(dialog);