X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fdialogs%2Fexport.cpp;h=dd96431f07782df199740596ff73963bdb0e03db;hb=4cb9ed4c3d183554e888e636844f8e3c2e666c40;hp=cce57486d7813cc3e1a69c1561a190cfd2e10dc4;hpb=025db6f90298127a666cd24bcfc2e22fd35ca84d;p=inkscape.git diff --git a/src/dialogs/export.cpp b/src/dialogs/export.cpp index cce57486d..dd96431f0 100644 --- a/src/dialogs/export.cpp +++ b/src/dialogs/export.cpp @@ -16,6 +16,9 @@ # include "config.h" #endif +// This has to be included prior to anything that includes setjmp.h, it croaks otherwise +#include + #include #include #include @@ -56,7 +59,6 @@ #include "io/sys.h" #include "helper/png-write.h" -#include #define SP_EXPORT_MIN_SIZE 1.0 @@ -622,7 +624,7 @@ sp_export_dialog (void) { Gtk::HBox* hide_box = new Gtk::HBox(FALSE, 5); - GtkWidget *he = gtk_check_button_new_with_label(_("Hide _all except selected")); + GtkWidget *he = gtk_check_button_new_with_label(_("Hide all except selected")); gtk_widget_set_sensitive(GTK_WIDGET(he), TRUE); gtk_object_set_data(GTK_OBJECT(dlg), "hide_checkbox", he); hide_box->pack_start(*Glib::wrap(he), false, false); @@ -1034,7 +1036,7 @@ create_progress_dialog (GtkObject *base, gchar *progress_text) { static gchar * filename_add_extension (const gchar *filename, const gchar *extension) { - gchar *dot; + const gchar *dot; dot = strrchr (filename, '.'); if ( !dot )