Pull the search UI construction code out into a distinct function.
[geeqie.git] / src / image_load_gdk.c
index ec817d9..2a04298 100644 (file)
@@ -1,13 +1,22 @@
 /*
- * Geeqie
- * (C) 2004 John Ellis
- * Copyright (C) 2008 - 2011 The Geeqie Team
+ * Copyright (C) 2004 John Ellis
+ * Copyright (C) 2008 - 2016 The Geeqie Team
  *
  * Author: Vladimir Nadvornik
  *
- * This software is released under the GNU General Public License (GNU GPL).
- * Please read the included file COPYING for more information.
- * This software comes with no warranty of any kind, use at your own risk!
+ * 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 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
+ * 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 Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
 #include "main.h"
@@ -27,7 +36,7 @@ static gchar** image_loader_gdk_get_format_mime_types(gpointer loader)
 static gpointer image_loader_gdk_new(ImageLoaderBackendCbAreaUpdated area_updated_cb, ImageLoaderBackendCbSize size_cb, ImageLoaderBackendCbAreaPrepared area_prepared_cb, gpointer data)
 {
         GdkPixbufLoader *loader = gdk_pixbuf_loader_new();
-        
+
        g_signal_connect(G_OBJECT(loader), "area_updated", G_CALLBACK(area_updated_cb), data);
        g_signal_connect(G_OBJECT(loader), "size_prepared", G_CALLBACK(size_cb), data);
        g_signal_connect(G_OBJECT(loader), "area_prepared", G_CALLBACK(area_prepared_cb), data);
@@ -53,10 +62,10 @@ void image_loader_backend_set_default(ImageLoaderBackend *funcs)
        funcs->close = (ImageLoaderBackendFuncClose) gdk_pixbuf_loader_close;
        funcs->abort = image_loader_gdk_abort;
        funcs->free = image_loader_gdk_free;
-       
+
        funcs->get_format_name = image_loader_gdk_get_format_name;
        funcs->get_format_mime_types = image_loader_gdk_get_format_mime_types;
 }
 
 
-
+/* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */