summaryrefslogtreecommitdiff
path: root/libcaja-private/caja-customization-data.c
diff options
context:
space:
mode:
authorrbuj <[email protected]>2021-10-27 17:34:17 +0200
committerraveit65 <[email protected]>2021-11-20 16:50:14 +0100
commit0a4384ca8c93b62bdf393cd1f3698bab1999fc6f (patch)
tree9c68212e8ba254df3dc80cd091b8fd3198a9b643 /libcaja-private/caja-customization-data.c
parentbdc5cf66eff8c52cf422cf7b0143ff3489bbb7b0 (diff)
downloadcaja-0a4384ca8c93b62bdf393cd1f3698bab1999fc6f.tar.bz2
caja-0a4384ca8c93b62bdf393cd1f3698bab1999fc6f.tar.xz
Use a blank line at most
Diffstat (limited to 'libcaja-private/caja-customization-data.c')
-rw-r--r--libcaja-private/caja-customization-data.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/libcaja-private/caja-customization-data.c b/libcaja-private/caja-customization-data.c
index 0a0d540c..8ed9566f 100644
--- a/libcaja-private/caja-customization-data.c
+++ b/libcaja-private/caja-customization-data.c
@@ -70,7 +70,6 @@ struct CajaCustomizationData
guint reading_mode : 2; /* enough bits for CustomizationReadingMode */
};
-
/* The Property here should be one of "emblems", "colors" or "patterns" */
static char * get_global_customization_path (const char *customization_name);
static char * get_private_customization_path (const char *customization_name);
@@ -79,7 +78,6 @@ static char * get_file_path_for_mode (const CajaCustomiz
static char* format_name_for_display (CajaCustomizationData *data, const char *name);
static void load_name_map_hash_table (CajaCustomizationData *data);
-
static gboolean
read_all_children (char *filename,
const char *attributes,
@@ -116,7 +114,6 @@ read_all_children (char *filename,
return TRUE;
}
-
CajaCustomizationData*
caja_customization_data_new (const char *customization_name,
gboolean show_public_customizations,
@@ -231,7 +228,6 @@ caja_customization_data_get_next_element_for_display (CajaCustomizationData *dat
}
}
-
current_file_info = data->current_file_list->data;
data->current_file_list = data->current_file_list->next;
@@ -321,7 +317,6 @@ caja_customization_data_destroy (CajaCustomizationData *data)
g_free (data);
}
-
/* get_global_customization_directory
Get the path where a property's pixmaps are stored
@customization_name : the name of the customization to get.
@@ -337,7 +332,6 @@ get_global_customization_path (const char *customization_name)
NULL);
}
-
/* get_private_customization_directory
Get the path where a customization's pixmaps are stored
@customization_name : the name of the customization to get.
@@ -360,7 +354,6 @@ get_private_customization_path (const char *customization_name)
return directory_path;
}
-
static char *
get_file_path_for_mode (const CajaCustomizationData *data,
const char *file_name)
@@ -381,7 +374,6 @@ get_file_path_for_mode (const CajaCustomizationData *data,
return file;
}
-
/* utility to make an attractive pattern image by compositing with a frame */
GdkPixbuf*
caja_customization_make_pattern_chit (GdkPixbuf *pattern_tile, GdkPixbuf *frame, gboolean dragging, gboolean is_reset)
@@ -421,7 +413,6 @@ caja_customization_make_pattern_chit (GdkPixbuf *pattern_tile, GdkPixbuf *frame,
return pixbuf;
}
-
/* utility to format the passed-in name for display by stripping the extension, mapping underscore
and capitalizing as necessary */