aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--addressbook/ChangeLog11
-rw-r--r--addressbook/gui/component/addressbook-config.c2
-rw-r--r--addressbook/gui/contact-editor/test-editor.c2
-rw-r--r--addressbook/printing/test-contact-print-style-editor.c2
-rw-r--r--addressbook/printing/test-print.c2
5 files changed, 15 insertions, 4 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 50caffc8a9..a563190e8d 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,14 @@
+2003-02-05 Dan Winship <danw@ximian.com>
+
+ * gui/component/addressbook-config.c (main): Replace deprecated
+ glade_gnome_init() with glade_init().
+
+ * gui/contact-editor/test-editor.c (main): Likewise.
+
+ * printing/test-contact-print-style-editor.c (main): Likewise.
+
+ * printing/test-print.c (main): Likewise.
+
2003-02-03 Chris Toshok <toshok@ximian.com>
[ pull forward Jack Jia's fix for #34900 ]
diff --git a/addressbook/gui/component/addressbook-config.c b/addressbook/gui/component/addressbook-config.c
index 8bae268ced..b7d8f1ce41 100644
--- a/addressbook/gui/component/addressbook-config.c
+++ b/addressbook/gui/component/addressbook-config.c
@@ -1754,7 +1754,7 @@ main(int argc, char **argv)
gnome_init_with_popt_table ("evolution-addressbook", "0.0",
argc, argv, oaf_popt_options, 0, NULL);
- glade_gnome_init ();
+ glade_init ();
bindtextdomain (PACKAGE, EVOLUTION_LOCALEDIR);
textdomain (PACKAGE);
diff --git a/addressbook/gui/contact-editor/test-editor.c b/addressbook/gui/contact-editor/test-editor.c
index eb7e3d3f68..4a8c111563 100644
--- a/addressbook/gui/contact-editor/test-editor.c
+++ b/addressbook/gui/contact-editor/test-editor.c
@@ -118,7 +118,7 @@ int main( int argc, char *argv[] )
gnome_program_init("Contact Editor Test", VERSION, LIBGNOMEUI_MODULE, argc, argv, NULL);
- glade_gnome_init ();
+ glade_init ();
cardstr = NULL;
if (argc == 2)
diff --git a/addressbook/printing/test-contact-print-style-editor.c b/addressbook/printing/test-contact-print-style-editor.c
index 48bed93450..774ae9f7b0 100644
--- a/addressbook/printing/test-contact-print-style-editor.c
+++ b/addressbook/printing/test-contact-print-style-editor.c
@@ -70,7 +70,7 @@ int main( int argc, char *argv[] )
argc, argv,
NULL);
- glade_gnome_init ();
+ glade_init ();
app = gnome_app_new("Contact Print Style Editor Test", NULL);
diff --git a/addressbook/printing/test-print.c b/addressbook/printing/test-print.c
index b9d0592474..765ca10743 100644
--- a/addressbook/printing/test-print.c
+++ b/addressbook/printing/test-print.c
@@ -69,7 +69,7 @@ int main( int argc, char *argv[] )
argc, argv,
NULL);
- glade_gnome_init ();
+ glade_init ();
shown_fields = g_list_append(shown_fields, "First field");
shown_fields = g_list_append(shown_fields, "Second field");