summaryrefslogtreecommitdiff
path: root/thunar/thunar-image.c
diff options
context:
space:
mode:
Diffstat (limited to 'thunar/thunar-image.c')
-rw-r--r--thunar/thunar-image.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/thunar/thunar-image.c b/thunar/thunar-image.c
index 650da202..cff52052 100644
--- a/thunar/thunar-image.c
+++ b/thunar/thunar-image.c
@@ -2,18 +2,18 @@
/*-
* Copyright (c) 2009 Jannis Pohlmann <jannis@xfce.org>
*
- * This program is free software; you can redistribute it and/or
+ * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
+ * published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
- * You should have received a copy of the GNU General Public
- * License along with this program; if not, write to the Free
+ * You should have received a copy of the GNU General Public
+ * License along with this program; if not, write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
@@ -93,7 +93,7 @@ thunar_image_class_init (ThunarImageClass *klass)
g_type_class_add_private (klass, sizeof (ThunarImagePrivate));
gobject_class = G_OBJECT_CLASS (klass);
- gobject_class->finalize = thunar_image_finalize;
+ gobject_class->finalize = thunar_image_finalize;
gobject_class->get_property = thunar_image_get_property;
gobject_class->set_property = thunar_image_set_property;
@@ -114,7 +114,7 @@ thunar_image_init (ThunarImage *image)
image->priv->file = NULL;
image->priv->monitor = thunar_file_monitor_get_default ();
- g_signal_connect (image->priv->monitor, "file-changed",
+ g_signal_connect (image->priv->monitor, "file-changed",
G_CALLBACK (thunar_image_file_changed), image);
}
@@ -125,7 +125,7 @@ thunar_image_finalize (GObject *object)
{
ThunarImage *image = THUNAR_IMAGE (object);
- g_signal_handlers_disconnect_by_func (image->priv->monitor,
+ g_signal_handlers_disconnect_by_func (image->priv->monitor,
thunar_image_file_changed, image);
g_object_unref (image->priv->monitor);
@@ -187,7 +187,7 @@ thunar_image_update (ThunarImage *image)
GdkScreen *screen;
_thunar_return_if_fail (THUNAR_IS_IMAGE (image));
-
+
if (THUNAR_IS_FILE (image->priv->file))
{
screen = gtk_widget_get_screen (GTK_WIDGET (image));