/* * ubuntuone-nautilus.c - Nautilus extensions for Ubuntu One * * Authors: Tim Cole * Rodney Dawes * Rodrigo Moya * * Copyright 2009-2010 Canonical Ltd. * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License version 3, as published * by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranties of * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . * */ #include #include "ubuntuone-nautilus.h" void ubuntuone_show_error_dialog (UbuntuOneNautilus *uon, const gchar *title, const gchar *error, ...) { gchar *buffer; va_list args; GtkWidget *dialog; /* Build the error message string */ va_start (args, error); buffer = g_strdup_vprintf (error, args); va_end (args); /* Show the dialog */ dialog = gtk_message_dialog_new (NULL, GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE, "%s", title); gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), "%s", buffer); gtk_dialog_run (GTK_DIALOG (dialog)); gtk_widget_destroy (dialog); g_free (buffer); }