summaryrefslogtreecommitdiff
path: root/plugins/filebrowser/pluma-file-browser-utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/filebrowser/pluma-file-browser-utils.c')
-rw-r--r--plugins/filebrowser/pluma-file-browser-utils.c44
1 files changed, 22 insertions, 22 deletions
diff --git a/plugins/filebrowser/pluma-file-browser-utils.c b/plugins/filebrowser/pluma-file-browser-utils.c
index 8a2fbf64..1695a09a 100644
--- a/plugins/filebrowser/pluma-file-browser-utils.c
+++ b/plugins/filebrowser/pluma-file-browser-utils.c
@@ -1,5 +1,5 @@
/*
- * pluma-file-bookmarks-store.c - Pluma plugin providing easy file access
+ * pluma-file-bookmarks-store.c - Pluma plugin providing easy file access
* from the sidepanel
*
* Copyright (C) 2006 - Jesse van den Kieboom <[email protected]>
@@ -27,8 +27,8 @@
static GdkPixbuf *
process_icon_pixbuf (GdkPixbuf * pixbuf,
- gchar const * name,
- gint size,
+ gchar const * name,
+ gint size,
GError * error)
{
GdkPixbuf * scale;
@@ -39,11 +39,11 @@ process_icon_pixbuf (GdkPixbuf * pixbuf,
error->message);
g_error_free (error);
}
-
+
if (pixbuf && gdk_pixbuf_get_width (pixbuf) > size) {
- scale = gdk_pixbuf_scale_simple (pixbuf,
- size,
- size,
+ scale = gdk_pixbuf_scale_simple (pixbuf,
+ size,
+ size,
GDK_INTERP_BILINEAR);
g_object_unref (pixbuf);
pixbuf = scale;
@@ -62,10 +62,10 @@ pluma_file_browser_utils_pixbuf_from_theme (gchar const * name,
gtk_icon_size_lookup (size, &width, NULL);
- pixbuf = gtk_icon_theme_load_icon (gtk_icon_theme_get_default (),
- name,
- width,
- 0,
+ pixbuf = gtk_icon_theme_load_icon (gtk_icon_theme_get_default (),
+ name,
+ width,
+ 0,
&error);
pixbuf = process_icon_pixbuf (pixbuf, name, width, error);
@@ -87,7 +87,7 @@ pluma_file_browser_utils_pixbuf_from_icon (GIcon * icon,
theme = gtk_icon_theme_get_default ();
gtk_icon_size_lookup (size, &width, NULL);
-
+
info = gtk_icon_theme_lookup_by_gicon (theme,
icon,
width,
@@ -95,7 +95,7 @@ pluma_file_browser_utils_pixbuf_from_icon (GIcon * icon,
if (!info)
return NULL;
-
+
ret = gtk_icon_info_load_icon (info, NULL);
g_object_unref (info);
@@ -110,12 +110,12 @@ pluma_file_browser_utils_pixbuf_from_file (GFile * file,
GFileInfo * info;
GdkPixbuf * ret = NULL;
- info = g_file_query_info (file,
- G_FILE_ATTRIBUTE_STANDARD_ICON,
+ info = g_file_query_info (file,
+ G_FILE_ATTRIBUTE_STANDARD_ICON,
G_FILE_QUERY_INFO_NONE,
- NULL,
+ NULL,
NULL);
-
+
if (!info)
return NULL;
@@ -124,7 +124,7 @@ pluma_file_browser_utils_pixbuf_from_file (GFile * file,
ret = pluma_file_browser_utils_pixbuf_from_icon (icon, size);
g_object_unref (info);
-
+
return ret;
}
@@ -133,11 +133,11 @@ pluma_file_browser_utils_file_basename (GFile * file)
{
gchar *uri;
gchar *ret;
-
+
uri = g_file_get_uri (file);
ret = pluma_file_browser_utils_uri_basename (uri);
g_free (uri);
-
+
return ret;
}
@@ -181,13 +181,13 @@ pluma_file_browser_utils_confirmation_dialog (PlumaWindow * window,
/* Add delete button */
button = gtk_button_new_with_mnemonic (_("_Delete"));
gtk_button_set_image (GTK_BUTTON (button), gtk_image_new_from_icon_name ("edit-delete", GTK_ICON_SIZE_BUTTON));
-
+
gtk_widget_show (button);
gtk_widget_set_can_default (button, TRUE);
gtk_dialog_add_action_widget (GTK_DIALOG (dlg),
button,
GTK_RESPONSE_OK);
-
+
ret = gtk_dialog_run (GTK_DIALOG (dlg));
gtk_widget_destroy (dlg);