From b9dd0ee03171cf8059673de6c17c1cd53e26d56b Mon Sep 17 00:00:00 2001
From: Philipp Schafft <lion@lion.leolix.org>
Date: Sun, 6 Oct 2019 08:56:10 +0000
Subject: [PATCH] Cleanup: Corrected reference to refobject_new() to
 igloo_ro_new()

---
 include/igloo/filter.h        | 2 +-
 include/igloo/io.h            | 2 +-
 include/igloo/logmsg.h        | 6 +++---
 include/igloo/objecthandler.h | 2 +-
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/include/igloo/filter.h b/include/igloo/filter.h
index d282b08..7041daf 100644
--- a/include/igloo/filter.h
+++ b/include/igloo/filter.h
@@ -65,7 +65,7 @@ typedef struct {
  *  backend_userdata
  *      A userdata pointer used by the backend or NULL.
  *  name, associated
- *      See refobject_new().
+ *      See igloo_ro_new().
  */
 igloo_filter_t * igloo_filter_new(const igloo_filter_ifdesc_t *ifdesc, igloo_ro_t backend_object, void *backend_userdata, const char *name, igloo_ro_t associated, igloo_ro_t instance);
 
diff --git a/include/igloo/io.h b/include/igloo/io.h
index d6916e2..6d24b85 100644
--- a/include/igloo/io.h
+++ b/include/igloo/io.h
@@ -129,7 +129,7 @@ typedef struct {
  *  backend_userdata
  *      A userdata pointer used by the backend or NULL.
  *  name, associated
- *      See refobject_new().
+ *      See igloo_ro_new().
  */
 igloo_io_t * igloo_io_new(const igloo_io_ifdesc_t *ifdesc, igloo_ro_t backend_object, void *backend_userdata, const char *name, igloo_ro_t associated, igloo_ro_t instance);
 
diff --git a/include/igloo/logmsg.h b/include/igloo/logmsg.h
index 445a42c..f2f817d 100644
--- a/include/igloo/logmsg.h
+++ b/include/igloo/logmsg.h
@@ -78,7 +78,7 @@ typedef unsigned long int igloo_logmsg_opt_t;
 /* This creates a new log message.
  * Parameters:
  *  name, associated
- *      See refobject_new().
+ *      See igloo_ro_new().
  *  msgid
  *      Message ID used to correlate messages of the same type.
  *      Used e.g. with igloo_LOGMSG_OPT_ASKACK.
@@ -162,7 +162,7 @@ int igloo_logmsg_get_extra(igloo_logmsg_t *msg, igloo_logmsg_opt_t *options, igl
  *  	Subformat to use. NULL for default.
  *  	Must be NULL.
  *  name, associated
- *      See refobject_new().
+ *      See igloo_ro_new().
  */
 igloo_objecthandler_t 	* igloo_logmsg_formarter(igloo_ro_t backend, const char *subformat, const char *name, igloo_ro_t associated, igloo_ro_t instance);
 
@@ -183,7 +183,7 @@ igloo_objecthandler_t 	* igloo_logmsg_formarter(igloo_ro_t backend, const char *
  *  cat
  *      Message category/module or NULL.
  *  name, associated
- *      See refobject_new().
+ *      See igloo_ro_new().
  */
 igloo_filter_t 		* igloo_logmsg_filter(igloo_loglevel_t level_min, igloo_loglevel_t level_max, igloo_logmsg_opt_t options_required, igloo_logmsg_opt_t options_absent, const struct timespec * ts_min, const struct timespec * ts_max, const char *cat, const char *name, igloo_ro_t associated, igloo_ro_t instance);
 
diff --git a/include/igloo/objecthandler.h b/include/igloo/objecthandler.h
index 0e20ba2..8d71127 100644
--- a/include/igloo/objecthandler.h
+++ b/include/igloo/objecthandler.h
@@ -69,7 +69,7 @@ typedef struct {
  *  backend_userdata
  *      A userdata pointer used by the backend or NULL.
  *  name, associated
- *      See refobject_new().
+ *      See igloo_ro_new().
  */
 igloo_objecthandler_t * igloo_objecthandler_new(const igloo_objecthandler_ifdesc_t *ifdesc, igloo_ro_t backend_object, void *backend_userdata, const char *name, igloo_ro_t associated, igloo_ro_t instance);