evolution-jescs r264 - in trunk: . storage



Author: jedywang
Date: Fri Aug 22 06:01:11 2008
New Revision: 264
URL: http://svn.gnome.org/viewvc/evolution-jescs?rev=264&view=rev

Log:
2008-08-22  Wang Xin  <jedy wang sun com>

	* configure.in: Bump to 2.23.2.
	* storage/sunone-component.c: Update impl_createView's interface.
	* storage/sunone-itip-view.c: Replace e_icon_factory_get_image with
	gtk_image_new_from_icon_name.



Modified:
   trunk/ChangeLog
   trunk/configure.in
   trunk/storage/sunone-component.c
   trunk/storage/sunone-itip-view.c

Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in	(original)
+++ trunk/configure.in	Fri Aug 22 06:01:11 2008
@@ -1,7 +1,7 @@
 # Process this file with autoconf to produce a configure script.
 AC_PREREQ(2.52)
 
-AC_INIT(evolution-jescs, 2.23.1, http://bugzilla.gnome.org/enter_bug.cgi?product=evolution-jescs)
+AC_INIT(evolution-jescs, 2.23.2, http://bugzilla.gnome.org/enter_bug.cgi?product=evolution-jescs)
 AC_CONFIG_SRCDIR(README)
 AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
 

Modified: trunk/storage/sunone-component.c
==============================================================================
--- trunk/storage/sunone-component.c	(original)
+++ trunk/storage/sunone-component.c	Fri Aug 22 06:01:11 2008
@@ -89,7 +89,8 @@
 
 static GNOME_Evolution_ComponentView
 impl_createView (PortableServer_Servant servant,
-			GNOME_Evolution_ShellView parent,
+			const GNOME_Evolution_ShellView parent,
+			const CORBA_boolean select_item,
 			CORBA_Environment *ev)
 {
 	SunOneComponent *component = SUNONE_COMPONENT (bonobo_object_from_servant (servant));

Modified: trunk/storage/sunone-itip-view.c
==============================================================================
--- trunk/storage/sunone-itip-view.c	(original)
+++ trunk/storage/sunone-itip-view.c	Fri Aug 22 06:01:11 2008
@@ -577,7 +577,7 @@
 			image = gtk_image_new_from_stock (GTK_STOCK_DIALOG_ERROR, GTK_ICON_SIZE_SMALL_TOOLBAR);
 			break;
 		case SUNONE_ITIP_VIEW_INFO_ITEM_TYPE_PROGRESS:
-			image = e_icon_factory_get_image ("stock_animation", E_ICON_SIZE_BUTTON);
+			image = gtk_image_new_from_icon_name ("stock_animation", GTK_ICON_SIZE_BUTTON);
 			break;
 		case SUNONE_ITIP_VIEW_INFO_ITEM_TYPE_NONE:
 		default:
@@ -687,7 +687,7 @@
 	gtk_box_set_spacing (GTK_BOX (view), 12);
 
 	/* The meeting icon */
-	icon = e_icon_factory_get_image (MEETING_ICON, E_ICON_SIZE_LARGE_TOOLBAR);
+	icon = gtk_image_new_from_icon_name (MEETING_ICON, GTK_ICON_SIZE_LARGE_TOOLBAR);
 	gtk_misc_set_alignment (GTK_MISC (icon), 0.5, 0);
 	gtk_widget_show (icon);
 



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