diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
commit | f7959a4e97cdef8152a8bbf4e6d0b69cefea1baa (patch) | |
tree | 99affdbf92575f7b6d8cc418f7c0d58d7a9012cf /flow/gsl/gbsearcharray.h | |
parent | 54dec355e137f1efddb349314aef9bd999d4c3bf (diff) | |
download | arts-f7959a4e97cdef8152a8bbf4e6d0b69cefea1baa.tar.gz arts-f7959a4e97cdef8152a8bbf4e6d0b69cefea1baa.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/dependencies/arts@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'flow/gsl/gbsearcharray.h')
-rw-r--r-- | flow/gsl/gbsearcharray.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/flow/gsl/gbsearcharray.h b/flow/gsl/gbsearcharray.h index afd1a51..df06231 100644 --- a/flow/gsl/gbsearcharray.h +++ b/flow/gsl/gbsearcharray.h @@ -78,7 +78,7 @@ static inline GBSearchArray* g_bsearch_array_remove (GBSearchArray *barray, static inline GBSearchArray* g_bsearch_array_grow (GBSearchArray *barray, const GBSearchConfig *bconfig, guint index); -/* insert key_node into array, or if it exists, tqreplace +/* insert key_node into array, or if it exists, replace * the existing node's contents with key_node */ static inline GBSearchArray* g_bsearch_array_insert (GBSearchArray *barray, @@ -241,7 +241,7 @@ g_bsearch_array_insert (GBSearchArray *barray, barray = g_bsearch_array_grow (barray, bconfig, index); node = G_BSEARCH_ARRAY_NODES (barray) + index * bconfig->sizeof_node; } - else /* tqreplace (relookup is ok, tqreplace is comparatively cheap anyways) */ + else /* replace (relookup is ok, replace is comparatively cheap anyways) */ node = g_bsearch_array_lookup (barray, bconfig, key_node); } memcpy (node, key_node, bconfig->sizeof_node); |