summaryrefslogtreecommitdiff
path: root/gtk/updateiconcache.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2006-10-08 05:07:55 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2006-10-08 05:07:55 +0000
commit07e7719441f5927bc3c482717fc53f8529186e3a (patch)
tree4baea8ab1c47987dc80120c67cb16be141a16b8d /gtk/updateiconcache.c
parente4581869b4a93ab882439673159a8f77b2396e57 (diff)
downloadgtk+-07e7719441f5927bc3c482717fc53f8529186e3a.tar.gz
Apply a cleanup patch by Kjartan Maraas (#341812)
2006-10-08 Matthias Clasen <mclasen@redhat.com> * Apply a cleanup patch by Kjartan Maraas (#341812)
Diffstat (limited to 'gtk/updateiconcache.c')
-rw-r--r--gtk/updateiconcache.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/gtk/updateiconcache.c b/gtk/updateiconcache.c
index da3071ccb0..f19d03c9c3 100644
--- a/gtk/updateiconcache.c
+++ b/gtk/updateiconcache.c
@@ -61,7 +61,7 @@ static gchar *var_name = "-";
#define ALIGN_VALUE(this, boundary) \
(( ((unsigned long)(this)) + (((unsigned long)(boundary)) -1)) & (~(((unsigned long)(boundary))-1)))
-gboolean
+static gboolean
is_cache_up_to_date (const gchar *path)
{
struct stat path_stat, cache_stat;
@@ -91,7 +91,7 @@ is_cache_up_to_date (const gchar *path)
return cache_stat.st_mtime >= path_stat.st_mtime;
}
-gboolean
+static gboolean
has_theme_index (const gchar *path)
{
gboolean result;
@@ -450,7 +450,7 @@ maybe_cache_image_data (Image *image,
}
}
-GList *
+static GList *
scan_directory (const gchar *base_path,
const gchar *subdir,
GHashTable *files,
@@ -614,7 +614,7 @@ convert_to_hash (gpointer key, gpointer value, gpointer user_data)
return TRUE;
}
-gboolean
+static gboolean
write_string (FILE *cache, const gchar *n)
{
gchar *s;
@@ -631,7 +631,7 @@ write_string (FILE *cache, const gchar *n)
}
-gboolean
+static gboolean
write_card16 (FILE *cache, guint16 n)
{
int i;
@@ -643,7 +643,7 @@ write_card16 (FILE *cache, guint16 n)
return i == 1;
}
-gboolean
+static gboolean
write_card32 (FILE *cache, guint32 n)
{
int i;
@@ -656,7 +656,7 @@ write_card32 (FILE *cache, guint32 n)
}
-gboolean
+static gboolean
write_pixdata (FILE *cache, GdkPixdata *pixdata)
{
guint8 *s;
@@ -691,7 +691,7 @@ write_header (FILE *cache, guint32 dir_list_offset)
write_card32 (cache, dir_list_offset));
}
-guint
+static guint
get_image_meta_data_size (Image *image)
{
gint i;
@@ -719,7 +719,7 @@ get_image_meta_data_size (Image *image)
return len;
}
-guint
+static guint
get_image_pixel_data_size (Image *image)
{
if (image->pixel_data_size == 0)
@@ -735,7 +735,7 @@ get_image_pixel_data_size (Image *image)
return image->pixel_data_size;
}
-guint
+static guint
get_image_data_size (Image *image)
{
guint len;
@@ -751,7 +751,7 @@ get_image_data_size (Image *image)
return len;
}
-guint
+static guint
get_single_node_size (HashNode *node, gboolean include_image_data)
{
int len = 0;
@@ -778,7 +778,7 @@ get_single_node_size (HashNode *node, gboolean include_image_data)
return len;
}
-guint
+static guint
get_bucket_size (HashNode *node)
{
int len = 0;
@@ -792,7 +792,7 @@ get_bucket_size (HashNode *node)
return len;
}
-gboolean
+static gboolean
write_bucket (FILE *cache, HashNode *node, int *offset)
{
while (node != NULL)
@@ -1012,7 +1012,7 @@ write_bucket (FILE *cache, HashNode *node, int *offset)
return TRUE;
}
-gboolean
+static gboolean
write_hash_table (FILE *cache, HashContext *context, int *new_offset)
{
int offset = HASH_OFFSET;
@@ -1060,7 +1060,7 @@ write_hash_table (FILE *cache, HashContext *context, int *new_offset)
return TRUE;
}
-gboolean
+static gboolean
write_dir_index (FILE *cache, int offset, GList *directories)
{
int n_dirs;
@@ -1094,7 +1094,7 @@ write_dir_index (FILE *cache, int offset, GList *directories)
return TRUE;
}
-gboolean
+static gboolean
write_file (FILE *cache, GHashTable *files, GList *directories)
{
HashContext context;
@@ -1140,7 +1140,7 @@ write_file (FILE *cache, GHashTable *files, GList *directories)
return TRUE;
}
-void
+static void
build_cache (const gchar *path)
{
gchar *cache_path, *tmp_cache_path;
@@ -1243,7 +1243,7 @@ build_cache (const gchar *path)
g_printerr (_("Cache file created successfully.\n"));
}
-void
+static void
write_csource (const gchar *path)
{
gchar *cache_path;