libbonobo r3488 - in trunk: . activation-server bonobo po samples/echo
- From: kmaraas svn gnome org
- To: svn-commits-list gnome org
- Subject: libbonobo r3488 - in trunk: . activation-server bonobo po samples/echo
- Date: Tue, 19 Aug 2008 08:35:25 +0000 (UTC)
Author: kmaraas
Date: Tue Aug 19 08:35:25 2008
New Revision: 3488
URL: http://svn.gnome.org/viewvc/libbonobo?rev=3488&view=rev
Log:
========================= 2.23.1 =====================
2008-08-19 Kjartan Maraas <kmaraas gnome org>
* NEWS: Update for release.
* activation-server/activation-context-corba.c: (ac_query_get_var):
s/strcasecmp/g_ascii_strcasecmp.
* bonobo/bonobo-object.c: (bonobo_object_class_init): Notify
the user about initializing bonobo with a warning and not a g_error.
Modified:
trunk/ChangeLog
trunk/NEWS
trunk/activation-server/activation-context-corba.c
trunk/bonobo/bonobo-object.c
trunk/po/ChangeLog
trunk/samples/echo/ChangeLog
Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS (original)
+++ trunk/NEWS Tue Aug 19 08:35:25 2008
@@ -1,6 +1,12 @@
+libbonobo 2.23.1
+ * Fix a race (Michael)
+ * Documentation improvement (Tobias Mueller)
+ * Check that we're initialized properly (Tobias Mueller)
+
libbonobo 2.23.0
* Use D-BUS to start and exit when the session ends.
* Build fixes.
+ * Translation updates.
libbonobo 2.22.0
* Fix warnings from GCC 4.3.x
Modified: trunk/activation-server/activation-context-corba.c
==============================================================================
--- trunk/activation-server/activation-context-corba.c (original)
+++ trunk/activation-server/activation-context-corba.c Tue Aug 19 08:35:25 2008
@@ -163,7 +163,7 @@
retval.value_known = FALSE;
retval.needs_free = FALSE;
- if (!strcasecmp (id, "_active")) {
+ if (!g_ascii_strcasecmp (id, "_active")) {
CORBA_Environment ev;
CORBA_exception_init (&ev);
Modified: trunk/bonobo/bonobo-object.c
==============================================================================
--- trunk/bonobo/bonobo-object.c (original)
+++ trunk/bonobo/bonobo-object.c Tue Aug 19 08:35:25 2008
@@ -894,7 +894,7 @@
g_assert (sizeof (BonoboObjectHeader) * 2 == sizeof (BonoboObject));
if (G_UNLIKELY (!bonobo_is_initialized()) )
- g_error ("Bonobo must be initialized before use");
+ g_warning ("Bonobo must be initialized before use");
bonobo_object_parent_class = g_type_class_peek_parent (klass);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]