aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-error.c
diff options
context:
space:
mode:
authorFrederic Peters <fpeters@entrouvert.com>2006-06-02 16:29:43 +0800
committerHarish Krishnaswamy <kharish@src.gnome.org>2006-06-02 16:29:43 +0800
commit00f6d32ee3dfa787029cbb1e925069d9f116749c (patch)
treef1ac458a7cb4cadd75ac643e5fa1dc7a78fe9b88 /e-util/e-error.c
parent5b80295a30daa11e13ac8a89bde52fd8ba157c9d (diff)
downloadgsoc2013-evolution-00f6d32ee3dfa787029cbb1e925069d9f116749c.tar
gsoc2013-evolution-00f6d32ee3dfa787029cbb1e925069d9f116749c.tar.gz
gsoc2013-evolution-00f6d32ee3dfa787029cbb1e925069d9f116749c.tar.bz2
gsoc2013-evolution-00f6d32ee3dfa787029cbb1e925069d9f116749c.tar.lz
gsoc2013-evolution-00f6d32ee3dfa787029cbb1e925069d9f116749c.tar.xz
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
Diffstat (limited to 'e-util/e-error.c')
-rw-r--r--e-util/e-error.c8
1 files changed, 4 insertions, 4 deletions
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 },
};
/* ********************************************************************** */