[evolution-patches] Cleanups of deprecated functions for the shell component



Same for shell.

Cheers
Kjartan

? Evolution-Addressbook-SelectNames-common.c
? Evolution-Addressbook-SelectNames-skels.c
? Evolution-Addressbook-SelectNames-stubs.c
? Evolution-Addressbook-SelectNames.h
? glade/Makefile
? glade/Makefile.in
Index: e-shell-importer.c
===================================================================
RCS file: /cvs/gnome/evolution/shell/e-shell-importer.c,v
retrieving revision 1.77
diff -u -p -r1.77 e-shell-importer.c
--- e-shell-importer.c	25 Aug 2004 11:02:16 -0000	1.77
+++ e-shell-importer.c	29 Sep 2004 20:17:10 -0000
@@ -214,13 +214,13 @@ import_cb (EvolutionImporterListener *li
 	IN;
 	if (icd->stop != TRUE) {
 		if (result == EVOLUTION_IMPORTER_NOT_READY) {
-			gtk_timeout_add (500, importer_timeout_fn, data);
+			g_timeout_add (500, importer_timeout_fn, data);
 			OUT;
 			return;
 		}
 		
 		if (result == EVOLUTION_IMPORTER_BUSY) {
-			gtk_timeout_add (500, importer_timeout_fn, data);
+			g_timeout_add (500, importer_timeout_fn, data);
 			OUT;
 			return;
 		}
Index: importer/intelligent.c
===================================================================
RCS file: /cvs/gnome/evolution/shell/importer/intelligent.c,v
retrieving revision 1.20
diff -u -p -r1.20 intelligent.c
--- importer/intelligent.c	31 Mar 2004 17:05:52 -0000	1.20
+++ importer/intelligent.c	29 Sep 2004 20:17:11 -0000
@@ -162,7 +162,7 @@ select_row_cb (GtkCList *clist,
 	       GdkEvent *ev,
 	       IntelligentImporterDialog *d)
 {
-	gtk_notebook_set_page (GTK_NOTEBOOK (d->placeholder), row);
+	gtk_notebook_set_current_page (GTK_NOTEBOOK (d->placeholder), row);
 }
 
 static void
@@ -172,7 +172,7 @@ unselect_row_cb (GtkCList *clist,
 		 GdkEvent *ev,
 		 IntelligentImporterDialog *d)
 {
-	gtk_notebook_set_page (GTK_NOTEBOOK (d->placeholder), d->running);
+	gtk_notebook_set_current_page (GTK_NOTEBOOK (d->placeholder), d->running);
 }
 
 static IntelligentImporterDialog *
@@ -363,7 +363,7 @@ create_gui (GList *importers)
 	gtk_notebook_append_page (GTK_NOTEBOOK (d->placeholder),
 				  dummy, NULL);
 	/* Set the start to the blank page */
-	gtk_notebook_set_page (GTK_NOTEBOOK (d->placeholder), running);
+	gtk_notebook_set_current_page (GTK_NOTEBOOK (d->placeholder), running);
 
 	g_signal_connect((clist), "select-row", 
 			    G_CALLBACK (select_row_cb), d);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]