]> git.ipfire.org Git - thirdparty/dbus.git/commitdiff
2002-11-23 Havoc Pennington <hp@pobox.com>
authorHavoc Pennington <hp@redhat.com>
Sat, 23 Nov 2002 07:48:28 +0000 (07:48 +0000)
committerHavoc Pennington <hp@redhat.com>
Sat, 23 Nov 2002 07:48:28 +0000 (07:48 +0000)
* Doxyfile.in (INCLUDE_FILE_PATTERNS): expand DBUS_BEGIN_DECLS/
DBUS_END_DECLS to nothing, that should fix this once and for all

* Doxyfile.in (JAVADOC_AUTOBRIEF): set to YES

* dbus/dbus-message.c, dbus/dbus-hash.c:
add some missing @brief

ChangeLog
Doxyfile.in
dbus/dbus-hash.c
dbus/dbus-hash.h
dbus/dbus-message.c
dbus/dbus-message.h

index 08535c68b2bcc4ec3f222602c315cdbeee3e101d..90371ec3c08dd144244a33123e75c2c8fea6259b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2002-11-23  Havoc Pennington  <hp@pobox.com>
+
+       * Doxyfile.in (INCLUDE_FILE_PATTERNS): expand DBUS_BEGIN_DECLS/
+       DBUS_END_DECLS to nothing, that should fix this once and for all
+
+       * Doxyfile.in (JAVADOC_AUTOBRIEF): set to YES
+
+       * dbus/dbus-message.c, dbus/dbus-hash.c: 
+       add some missing @brief
+
 2002-11-23  Havoc Pennington  <hp@pobox.com>
 
        * dbus/dbus-message.h: put semicolons after DEBUG_BEGIN_DECLS 
index c686f4b44c7b788baa4505d9bb7fd47acb214dd1..877b4ed52b1b1e3e1c439f0c1db86355b5964d42 100644 (file)
@@ -24,7 +24,7 @@ SHORT_NAMES            = NO
 HIDE_SCOPE_NAMES       = NO
 VERBATIM_HEADERS       = YES
 SHOW_INCLUDE_FILES     = YES
-JAVADOC_AUTOBRIEF      = NO
+JAVADOC_AUTOBRIEF      = YES
 INHERIT_DOCS           = YES
 INLINE_INFO            = YES
 SORT_MEMBER_DOCS       = YES
@@ -138,12 +138,12 @@ GENERATE_XML           = NO
 # Configuration options related to the preprocessor   
 #---------------------------------------------------------------------------
 ENABLE_PREPROCESSING   = YES
-MACRO_EXPANSION        = NO
-EXPAND_ONLY_PREDEF     = NO
+MACRO_EXPANSION        = YES
+EXPAND_ONLY_PREDEF     = YES
 SEARCH_INCLUDES        = YES
 INCLUDE_PATH           = 
 INCLUDE_FILE_PATTERNS  = 
-PREDEFINED             = 
+PREDEFINED             = "DBUS_BEGIN_DECLS=" "DBUS_END_DECLS="
 EXPAND_AS_DEFINED      = 
 SKIP_FUNCTION_MACROS   = YES
 #---------------------------------------------------------------------------
index 419a7848382dbd93b263a768c9b5332cdce65405..77fa95dc202ccb98a3125be830968258a7ea5e60 100644 (file)
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-hash.c  Generic hash table utility (internal to D-BUS implementation)
+/* dbus-hash.c Generic hash table utility (internal to D-BUS implementation)
  * 
  * Copyright (C) 2002  Red Hat, Inc.
  * Copyright (c) 1991-1993 The Regents of the University of California.
 typedef struct DBusHashEntry DBusHashEntry;
 
 /**
+ * @brief Internal representation of a hash entry.
+ * 
  * A single entry (key-value pair) in the hash table.
  * Internal to hash table implementation.
  */
@@ -145,8 +147,10 @@ typedef DBusHashEntry* (* DBusFindEntryFunction) (DBusHashTable   *table,
                                                   DBusHashEntry ***bucket);
 
 /**
- * Hash table internal members. Hash tables are opaque objects,
- * they must be used via accessor functions.
+ * @brief Internals of DBusHashTable.
+ * 
+ * Hash table internals. Hash tables are opaque objects, they must be
+ * used via accessor functions.
  */
 struct DBusHashTable {
   int refcount;                       /**< Reference count */
@@ -184,8 +188,8 @@ struct DBusHashTable {
   DBusFreeFunction free_value_function; /**< Function to free values */
 };
 
-/**
- * Internals of DBusHashIter.
+/** 
+ * @brief Internals of DBusHashIter.
  */
 typedef struct
 {
index 267b2e94d9e9eafa897a2d2081d9f28f1c6aca90..b8136524e1b2df35b7c918878590143a4abd8bad 100644 (file)
@@ -1,6 +1,6 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-hash.h  Generic hash table utility (internal to D-BUS implementation)
- *
+/* dbus-hash.h Generic hash table utility (internal to D-BUS implementation)
+ * 
  * Copyright (C) 2002  Red Hat, Inc.
  *
  * Licensed under the Academic Free License version 1.2
index fdc0c34229859af90238b60ec9adff6a02c64225..a52d7097ebf6f6853c492dcb89e354e75f21624c 100644 (file)
@@ -34,6 +34,8 @@
  */
 
 /**
+ * @brief Internals of DBusMessage
+ * 
  * Object representing a message received from or to be sent to
  * another application. This is an opaque object, all members
  * are private.
index d86f5d23cfe28c145a451210f9c5f431705c6234..ce618388bc2e2e9edbe05cb2e4070dafab4feeba 100644 (file)
@@ -1,5 +1,5 @@
 /* -*- mode: C; c-file-style: "gnu" -*- */
-/* dbus-message.h  DBusMessage object
+/* dbus-message.h DBusMessage object
  *
  * Copyright (C) 2002  Red Hat Inc.
  *