[at-spi2-core] atspi_accessible_new -> _atspi_accessible_new



commit 9d365324ca9992a44272818e8b665bd36fa8bd12
Author: Mike Gorse <mgorse novell com>
Date:   Mon Aug 29 14:52:00 2011 -0500

    atspi_accessible_new -> _atspi_accessible_new

 atspi/atspi-accessible.c               |    2 +-
 atspi/atspi-accessible.h               |    2 +-
 atspi/atspi-misc.c                     |    6 +++---
 doc/libatspi/tmpl/libatspi-unused.sgml |   12 ++++++------
 4 files changed, 11 insertions(+), 11 deletions(-)
---
diff --git a/atspi/atspi-accessible.c b/atspi/atspi-accessible.c
index ba41048..514efce 100644
--- a/atspi/atspi-accessible.c
+++ b/atspi/atspi-accessible.c
@@ -1431,7 +1431,7 @@ atspi_accessible_get_interfaces (AtspiAccessible *obj)
 }
 
 AtspiAccessible * 
-atspi_accessible_new (AtspiApplication *app, const gchar *path)
+_atspi_accessible_new (AtspiApplication *app, const gchar *path)
 {
   AtspiAccessible *accessible;
   
diff --git a/atspi/atspi-accessible.h b/atspi/atspi-accessible.h
index d9deffe..f537a1f 100644
--- a/atspi/atspi-accessible.h
+++ b/atspi/atspi-accessible.h
@@ -64,7 +64,7 @@ struct _AtspiAccessibleClass
 GType atspi_accessible_get_type (void); 
 
 AtspiAccessible *
-atspi_accessible_new (AtspiApplication *app, const gchar *path);
+_atspi_accessible_new (AtspiApplication *app, const gchar *path);
 
 gchar * atspi_role_get_name (AtspiRole role);
 
diff --git a/atspi/atspi-misc.c b/atspi/atspi-misc.c
index 02424aa..76174bc 100644
--- a/atspi/atspi-misc.c
+++ b/atspi/atspi-misc.c
@@ -229,7 +229,7 @@ ref_accessible (const char *app_name, const char *path)
   {
     if (!app->root)
     {
-      app->root = atspi_accessible_new (app, atspi_path_root);
+      app->root = _atspi_accessible_new (app, atspi_path_root);
       app->root->accessible_parent = atspi_get_desktop (0);
     }
     return g_object_ref (app->root);
@@ -240,7 +240,7 @@ ref_accessible (const char *app_name, const char *path)
   {
     return g_object_ref (a);
   }
-  a = atspi_accessible_new (app, path);
+  a = _atspi_accessible_new (app, path);
   if (!a)
     return NULL;
   g_hash_table_insert (app->hash, g_strdup (a->parent.path), a);
@@ -519,7 +519,7 @@ ref_accessible_desktop (AtspiApplication *app)
     g_object_ref (desktop);
     return desktop;
   }
-  desktop = atspi_accessible_new (app, atspi_path_root);
+  desktop = _atspi_accessible_new (app, atspi_path_root);
   if (!desktop)
   {
     return NULL;
diff --git a/doc/libatspi/tmpl/libatspi-unused.sgml b/doc/libatspi/tmpl/libatspi-unused.sgml
index 0719836..ff0e174 100644
--- a/doc/libatspi/tmpl/libatspi-unused.sgml
+++ b/doc/libatspi/tmpl/libatspi-unused.sgml
@@ -50,22 +50,22 @@
 @data: 
 @Returns: 
 
-<!-- ##### FUNCTION atspi_hyperlink_new ##### -->
+<!-- ##### FUNCTION atspi_document_get_type ##### -->
 <para>
 
 </para>
 
- app: 
- path: 
- Returns: 
 
-<!-- ##### FUNCTION atspi_image_get_type ##### -->
+<!-- ##### FUNCTION atspi_hyperlink_new ##### -->
 <para>
 
 </para>
 
+ app: 
+ path: 
+ Returns: 
 
-<!-- ##### FUNCTION atspi_document_get_type ##### -->
+<!-- ##### FUNCTION atspi_image_get_type ##### -->
 <para>
 
 </para>



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