gtk_widget_show_all(dialog);
-if (GTK_RESPONSE_ACCEPT == gtk_dialog_run(GTK_DIALOG(dialog))) {
+if (GTK_RESPONSE_ACCEPT==gtk_dialog_run(GTK_DIALOG(dialog))) {
gchar *planet, *db;
planet=gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(picker_planet));
if (osm_import_bg(planet, db, osm_import_progress_cb, osm_import_done_cb)==TRUE)
gtk_widget_destroy(dialog);
else
- popup_error(dialog, _("Failed to start import thread."));
+ popup_error(dialog, _("Failed to start import."));
} else {
popup_error(dialog, _("Missing file selection!"));
}