]> www.fi.muni.cz Git - evince.git/commitdiff
[libdocument] Remove ev_tmp_dir()
authorChristian Persch <chpe@gnome.org>
Sun, 25 Oct 2009 18:55:18 +0000 (19:55 +0100)
committerChristian Persch <chpe@gnome.org>
Sun, 25 Oct 2009 18:55:18 +0000 (19:55 +0100)
All access to the tmp dir should be through ev_mkstemp[_file]() and
ev_mkdtemp() now.

libdocument/ev-file-helpers.c
libdocument/ev-file-helpers.h

index 4816db0e51edaca16ee4d0e6ef36c65ba69557b3..3845519f67c2cbcb7184e1e639cb1b3fa9dc5615 100644 (file)
@@ -33,7 +33,7 @@
 
 static gchar *tmp_dir = NULL;
 
-/**
+/*
  * ev_dir_ensure_exists:
  * @dir: the directory name
  * @mode: permissions to use when creating the directory
@@ -43,10 +43,10 @@ static gchar *tmp_dir = NULL;
  *
  * Returns: %TRUE on success, or %FALSE on error with @error filled in
  */
-gboolean
-ev_dir_ensure_exists (const gchar *dir,
-                      int          mode,
-                      GError     **error)
+static gboolean
+_ev_dir_ensure_exists (const gchar *dir,
+                       int          mode,
+                       GError     **error)
 {
         int errsv;
         char *display_name;
@@ -79,7 +79,7 @@ ev_dir_ensure_exists (const gchar *dir,
  * Returns: the tmp directory, or %NULL with @error filled in if the
  *   directory could not be created
  */
-const char *
+static const char *
 _ev_tmp_dir (GError **error)
 {
 
@@ -92,7 +92,7 @@ _ev_tmp_dir (GError **error)
                 g_free (dirname);
         }
 
-        if (!ev_dir_ensure_exists (tmp_dir, 0700, error))
+        if (!_ev_dir_ensure_exists (tmp_dir, 0700, error))
                 return NULL;
 
        return tmp_dir;
index 99df4ed48e22054b4d6804ae930ad0813dc5774a..2ab309dd0f70fe13e3cb50626105a80270af1a23 100644 (file)
@@ -36,16 +36,10 @@ typedef enum {
        EV_COMPRESSION_GZIP
 } EvCompressionType;
 
-const char *_ev_tmp_dir               (GError **error);
-
 void        _ev_file_helpers_init     (void);
 
 void        _ev_file_helpers_shutdown (void);
 
-gboolean     ev_dir_ensure_exists     (const gchar       *dir,
-                                       int                mode,
-                                       GError           **error);
-
 int          ev_mkstemp               (const char        *template,
                                        char             **file_name,
                                        GError           **error);