diff options
author | Dan Winship <danw@src.gnome.org> | 2003-02-06 02:08:49 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-02-06 02:08:49 +0800 |
commit | 5b7f0b4f0ee3ef1249dc55375ce5c3bc6e812bce (patch) | |
tree | dadc6a3da3585333802ea42ff858c5e84b8c6604 /addressbook | |
parent | b0f27fa8d77c23f0ff7575ba7def49af5f7017b6 (diff) | |
download | gsoc2013-evolution-5b7f0b4f0ee3ef1249dc55375ce5c3bc6e812bce.tar.gz gsoc2013-evolution-5b7f0b4f0ee3ef1249dc55375ce5c3bc6e812bce.tar.zst gsoc2013-evolution-5b7f0b4f0ee3ef1249dc55375ce5c3bc6e812bce.zip |
Replace deprecated glade_gnome_init() with glade_init().
* 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.
svn path=/trunk/; revision=19760
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 11 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook-config.c | 2 | ||||
-rw-r--r-- | addressbook/gui/contact-editor/test-editor.c | 2 | ||||
-rw-r--r-- | addressbook/printing/test-contact-print-style-editor.c | 2 | ||||
-rw-r--r-- | addressbook/printing/test-print.c | 2 |
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"); |