~ubuntu-branches/ubuntu/oneiric/gnome-panel/oneiric

« back to all changes in this revision

Viewing changes to gnome-panel/libpanel-util/panel-error.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2011-05-30 11:04:49 UTC
  • mfrom: (1.3.4 upstream)
  • mto: This revision was merged to the branch mainline in revision 204.
  • Revision ID: james.westby@ubuntu.com-20110530110449-ut1tc5t61rpvf9e3
Tags: upstream-3.0.2
ImportĀ upstreamĀ versionĀ 3.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 *      Vincent Untz <vuntz@gnome.org>
31
31
 */
32
32
 
 
33
#ifdef HAVE_CONFIG_H
 
34
#include <config.h>
 
35
#endif
 
36
 
33
37
#include <glib/gi18n.h>
34
38
 
35
39
#include <gtk/gtk.h>
64
68
                gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog),
65
69
                                                          "%s", secondary_text);
66
70
 
67
 
        /* FIXME: we're losing this feature
68
 
        gtk_widget_add_events (dialog, GDK_KEY_PRESS_MASK);
69
 
        g_signal_connect (dialog, "event",
70
 
                          G_CALLBACK (panel_dialog_window_event), NULL);
71
 
        */
72
 
 
73
71
        if (screen)
74
72
                gtk_window_set_screen (GTK_WINDOW (dialog), screen);
75
73