diff options
author | Frederic Peters <fpeters@entrouvert.com> | 2006-06-02 16:29:43 +0800 |
---|---|---|
committer | Harish Krishnaswamy <kharish@src.gnome.org> | 2006-06-02 16:29:43 +0800 |
commit | 00f6d32ee3dfa787029cbb1e925069d9f116749c (patch) | |
tree | f1ac458a7cb4cadd75ac643e5fa1dc7a78fe9b88 | |
parent | 5b80295a30daa11e13ac8a89bde52fd8ba157c9d (diff) | |
download | gsoc2013-evolution-00f6d32ee3dfa787029cbb1e925069d9f116749c.tar.gz gsoc2013-evolution-00f6d32ee3dfa787029cbb1e925069d9f116749c.tar.zst gsoc2013-evolution-00f6d32ee3dfa787029cbb1e925069d9f116749c.zip |
Set new scroll member to false in static declarations. Fixes build breaker
2006-06-02 Frederic Peters <fpeters@entrouvert.com>
* e-error.c: Set new scroll member to false in static
declarations. Fixes build breaker #343446.
svn path=/trunk/; revision=32066
-rw-r--r-- | e-util/ChangeLog | 5 | ||||
-rw-r--r-- | e-util/e-error.c | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 67b0c73974..b58407da92 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,8 @@ +2006-06-02 Frederic Peters <fpeters@entrouvert.com> + + * e-error.c: Set new scroll member to false in static + declarations. Fixes build breaker #343446. + 2006-05-30 Srinivasa Ragavan <sragavan@novell.com> * e-error.c: (ee_load), (e_error_newv): Added a new property diff --git a/e-util/e-error.c b/e-util/e-error.c index 0ad7e2e77e..0fd4ddedb7 100644 --- a/e-util/e-error.c +++ b/e-util/e-error.c @@ -83,10 +83,10 @@ static struct _e_error_button default_ok_button = { }; static struct _e_error default_errors[] = { - { GTK_DIALOG_MODAL, "error", 3, GTK_RESPONSE_OK, N_("Evolution Error"), "{0}", "{1}", NULL, &default_ok_button }, - { GTK_DIALOG_MODAL, "error-primary", 3, GTK_RESPONSE_OK, N_("Evolution Error"), "{0}", NULL, NULL, &default_ok_button }, - { GTK_DIALOG_MODAL, "warning", 1, GTK_RESPONSE_OK, N_("Evolution Warning"), "{0}", "{1}", NULL, &default_ok_button }, - { GTK_DIALOG_MODAL, "warning-primary", 1, GTK_RESPONSE_OK, N_("Evolution Warning"), "{0}", NULL, NULL, &default_ok_button }, + { GTK_DIALOG_MODAL, "error", 3, GTK_RESPONSE_OK, N_("Evolution Error"), "{0}", "{1}", NULL, FALSE, &default_ok_button }, + { GTK_DIALOG_MODAL, "error-primary", 3, GTK_RESPONSE_OK, N_("Evolution Error"), "{0}", NULL, NULL, FALSE, &default_ok_button }, + { GTK_DIALOG_MODAL, "warning", 1, GTK_RESPONSE_OK, N_("Evolution Warning"), "{0}", "{1}", NULL, FALSE, &default_ok_button }, + { GTK_DIALOG_MODAL, "warning-primary", 1, GTK_RESPONSE_OK, N_("Evolution Warning"), "{0}", NULL, NULL, FALSE, &default_ok_button }, }; /* ********************************************************************** */ |