[libgda] Doc. update



commit 5189df11cb0c949018eabdfcef5e2154e07ebd15
Author: Vivien Malerba <malerba gnome-db org>
Date:   Mon Dec 15 22:25:40 2014 +0100

    Doc. update

 libgda-ui/gdaui-data-selector.c |    2 +-
 libgda/gda-lockable.c           |    8 +-------
 2 files changed, 2 insertions(+), 8 deletions(-)
---
diff --git a/libgda-ui/gdaui-data-selector.c b/libgda-ui/gdaui-data-selector.c
index bf109bd..3d47897 100644
--- a/libgda-ui/gdaui-data-selector.c
+++ b/libgda-ui/gdaui-data-selector.c
@@ -199,7 +199,7 @@ gdaui_data_selector_unselect_row (GdauiDataSelector *iface, gint row)
 /**
  * gdaui_data_selector_set_column_visible:
  * @iface: an object which implements the #GdauiDataSelector interface
- * @column: a column number, starting at %0, or -1 tp apply to all the columns
+ * @column: a column number, starting at %0, or -1 to apply to all the columns
  * @visible: required visibility of the data in the @column column
  *
  * Shows or hides the data at column @column
diff --git a/libgda/gda-lockable.c b/libgda/gda-lockable.c
index 4ed14cb..8679e4f 100644
--- a/libgda/gda-lockable.c
+++ b/libgda/gda-lockable.c
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2008 - 2013 Vivien Malerba <malerba gnome-db org>
+ * Copyright (C) 2008 - 2014 Vivien Malerba <malerba gnome-db org>
  * Copyright (C) 2010 David King <davidk openismus com>
  *
  * This library is free software; you can redistribute it and/or
@@ -73,8 +73,6 @@ gda_lockable_class_init (G_GNUC_UNUSED gpointer g_class)
  * Locks @lockable. If it is already locked by another thread, the current thread will block until it is 
unlocked 
  * by the other thread.
  *
- * This function can be used even if g_thread_init() has not yet been called, and, in that case, will do 
nothing.
- *
  * Note: unlike g_mutex_lock(), this method recursive, which means a thread can lock @lockable several times 
  * (and has to unlock it as many times to actually unlock it).
  */
@@ -96,8 +94,6 @@ gda_lockable_lock (GdaLockable *lockable)
  * Tries to lock @lockable. If it is already locked by another thread, then it immediately returns FALSE, 
otherwise
  * it locks @lockable.
  *
- * This function can be used even if g_thread_init() has not yet been called, and, in that case, will do 
nothing.
- *
  * Note: unlike g_mutex_lock(), this method recursive, which means a thread can lock @lockable several times 
  * (and has to unlock it as many times to actually unlock it).
  *
@@ -122,8 +118,6 @@ gda_lockable_trylock (GdaLockable *lockable)
  *
  * Unlocks @lockable. This method should not be called if the current does not already holds a lock on 
@lockable (having
  * used gda_lockable_lock() or gda_lockable_trylock()).
- *
- * This function can be used even if g_thread_init() has not yet been called, and, in that case, will do 
nothing.
  */
 void
 gda_lockable_unlock (GdaLockable *lockable)


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