dbus/dbus dbus-message.c, 1.131, 1.132 dbus-object-tree.c, 1.6, 1.7 dbus-string.c, 1.48, 1.49 dbus-message-handler.c, 1.11, NONE dbus-message-handler.h, 1.3, NONE

Kristian Hogsberg krh at pdx.freedesktop.org
Wed Jun 2 06:13:16 PDT 2004


Update of /cvs/dbus/dbus/dbus
In directory pdx:/tmp/cvs-serv14383/dbus

Modified Files:
	dbus-message.c dbus-object-tree.c dbus-string.c 
Removed Files:
	dbus-message-handler.c dbus-message-handler.h 
Log Message:
2004-06-02  Kristian Høgsberg  <krh at redhat.com>

	* glib/dbus-gproxy.c, glib/dbus-gmain.c, dbus/dbus-string.c,
	dbus/dbus-object-tree.c, dbus/dbus-message.c: add comments to
	quiet doxygen.

	* Doxyfile.in: remove deprecated options.

	* dbus/dbus-message-handler.c, dbus/dbus-message-handler.h,
	glib/test-thread.h, glib/test-thread-client.c,
	glib/test-thread-server.c, glib/test-profile.c,
	glib/test-dbus-glib.c: remove these unused files.


Index: dbus-message.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-message.c,v
retrieving revision 1.131
retrieving revision 1.132
diff -u -d -r1.131 -r1.132
--- a/dbus-message.c	28 May 2004 22:30:04 -0000	1.131
+++ b/dbus-message.c	2 Jun 2004 13:13:14 -0000	1.132
@@ -394,7 +394,9 @@
   return FALSE;
 }
 
+/** The maximum number of bytes of overhead to append to a string */
 #define MAX_BYTES_OVERHEAD_TO_APPEND_A_STRING (1 + 1 + 3 + 1 + 8)
+
 static dbus_bool_t
 append_string_field (DBusMessage *message,
                      int          field,

Index: dbus-object-tree.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-object-tree.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- a/dbus-object-tree.c	1 Jun 2004 19:57:00 -0000	1.6
+++ b/dbus-object-tree.c	2 Jun 2004 13:13:14 -0000	1.7
@@ -915,7 +915,7 @@
  * the given parent_path. The returned array should be freed with
  * dbus_free_string_array().
  *
- * @param connection the connection
+ * @param tree the object tree
  * @param parent_path the path to list the child handlers of
  * @param child_entries returns #NULL-terminated array of children
  * @returns #FALSE if no memory to allocate the child entries

Index: dbus-string.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-string.c,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -d -r1.48 -r1.49
--- a/dbus-string.c	28 May 2004 13:10:35 -0000	1.48
+++ b/dbus-string.c	2 Jun 2004 13:13:14 -0000	1.49
@@ -2551,11 +2551,19 @@
   return TRUE;
 }
 
+/**
+ * Determine wether the given charater is valid as the first charater
+ * in a name.
+ */
 #define VALID_INITIAL_NAME_CHARACTER(c)         \
   ( ((c) >= 'A' && (c) <= 'Z') ||               \
     ((c) >= 'a' && (c) <= 'z') ||               \
     ((c) == '_') )
 
+/**
+ * Determine wether the given charater is valid as a second or later
+ * character in a nam
+ */
 #define VALID_NAME_CHARACTER(c)                 \
   ( ((c) >= '0' && (c) <= '9') ||               \
     ((c) >= 'A' && (c) <= 'Z') ||               \

--- dbus-message-handler.c DELETED ---

--- dbus-message-handler.h DELETED ---




More information about the dbus-commit mailing list