summaryrefslogtreecommitdiff
path: root/docs/refcounting.txt
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@src.gnome.org>1998-02-13 23:00:54 +0000
committerOwen Taylor <otaylor@src.gnome.org>1998-02-13 23:00:54 +0000
commit623f7d977284a12e0f73e4a4838f9773370f9148 (patch)
tree17a118abba4e29528a654addf93510b268fb7165 /docs/refcounting.txt
parent3c7f5af2a5db00037a54c893af6ac913dfc67631 (diff)
downloadgtk+-623f7d977284a12e0f73e4a4838f9773370f9148.tar.gz
Fixed some incorrect information.
Diffstat (limited to 'docs/refcounting.txt')
-rw-r--r--docs/refcounting.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/refcounting.txt b/docs/refcounting.txt
index 82817d5c41..7130f1654c 100644
--- a/docs/refcounting.txt
+++ b/docs/refcounting.txt
@@ -7,9 +7,10 @@ functions that follow these conventions:
*_new: Create a new structure with a reference count of 1.
*_ref: Increase ref count by one.
*_unref: Decrease ref count by one. If the count drops to zero,
- run aprropriate finalization code and free the memory.
- No user visible actions should take place, like
- destryoing windows, etc.
+ run appropriate finalization code and free the memory.
+ For data structures with a _destroy function, it will be
+ invoked at this point, if the data structure is not
+ already in a destroyed state.
GtkObjects also provide the following functions: