Whitespace cleanup

This commit is contained in:
Matthias Clasen 2010-09-03 19:38:56 -04:00
parent 8300820f7b
commit 156a3f7195
2 changed files with 15 additions and 15 deletions

View File

@ -159,12 +159,12 @@ g_cache_node_destroy (GCacheNode *node)
**/ **/
GCache* GCache*
g_cache_new (GCacheNewFunc value_new_func, g_cache_new (GCacheNewFunc value_new_func,
GCacheDestroyFunc value_destroy_func, GCacheDestroyFunc value_destroy_func,
GCacheDupFunc key_dup_func, GCacheDupFunc key_dup_func,
GCacheDestroyFunc key_destroy_func, GCacheDestroyFunc key_destroy_func,
GHashFunc hash_key_func, GHashFunc hash_key_func,
GHashFunc hash_value_func, GHashFunc hash_value_func,
GEqualFunc key_equal_func) GEqualFunc key_equal_func)
{ {
GCache *cache; GCache *cache;
@ -223,7 +223,7 @@ g_cache_destroy (GCache *cache)
**/ **/
gpointer gpointer
g_cache_insert (GCache *cache, g_cache_insert (GCache *cache,
gpointer key) gpointer key)
{ {
GCacheNode *node; GCacheNode *node;
gpointer value; gpointer value;
@ -258,7 +258,7 @@ g_cache_insert (GCache *cache,
**/ **/
void void
g_cache_remove (GCache *cache, g_cache_remove (GCache *cache,
gconstpointer value) gconstpointer value)
{ {
GCacheNode *node; GCacheNode *node;
gpointer key; gpointer key;
@ -297,8 +297,8 @@ g_cache_remove (GCache *cache,
**/ **/
void void
g_cache_key_foreach (GCache *cache, g_cache_key_foreach (GCache *cache,
GHFunc func, GHFunc func,
gpointer user_data) gpointer user_data)
{ {
g_return_if_fail (cache != NULL); g_return_if_fail (cache != NULL);
g_return_if_fail (func != NULL); g_return_if_fail (func != NULL);
@ -320,8 +320,8 @@ g_cache_key_foreach (GCache *cache,
**/ **/
void void
g_cache_value_foreach (GCache *cache, g_cache_value_foreach (GCache *cache,
GHFunc func, GHFunc func,
gpointer user_data) gpointer user_data)
{ {
g_return_if_fail (cache != NULL); g_return_if_fail (cache != NULL);
g_return_if_fail (func != NULL); g_return_if_fail (func != NULL);

View File

@ -8,7 +8,7 @@
* *
* This library is distributed in the hope that it will be useful, * This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details. * Lesser General Public License for more details.
* *
* You should have received a copy of the GNU Lesser General Public * You should have received a copy of the GNU Lesser General Public