Revision: 1443
          http://geeqie.svn.sourceforge.net/geeqie/?rev=1443&view=rev
Author:   zas_
Date:     2009-02-28 20:52:51 +0000 (Sat, 28 Feb 2009)

Log Message:
-----------
Add missing space between switch and first parenthesis.

Modified Paths:
--------------
    trunk/src/cache_maint.c
    trunk/src/collect-io.c
    trunk/src/collect.c
    trunk/src/dupe.c
    trunk/src/img-view.c
    trunk/src/layout_image.c
    trunk/src/metadata.c
    trunk/src/preferences.c
    trunk/src/print.c
    trunk/src/search.c
    trunk/src/view_dir.c
    trunk/src/view_file.c

Modified: trunk/src/cache_maint.c
===================================================================
--- trunk/src/cache_maint.c     2009-02-28 20:48:47 UTC (rev 1442)
+++ trunk/src/cache_maint.c     2009-02-28 20:52:51 UTC (rev 1443)
@@ -623,7 +623,7 @@
 {
        if (type != NOTIFY_TYPE_CHANGE || !fd->change) return;
        
-       switch(fd->change->type)
+       switch (fd->change->type)
                {
                case FILEDATA_CHANGE_MOVE:
                case FILEDATA_CHANGE_RENAME:

Modified: trunk/src/collect-io.c
===================================================================
--- trunk/src/collect-io.c      2009-02-28 20:48:47 UTC (rev 1442)
+++ trunk/src/collect-io.c      2009-02-28 20:52:51 UTC (rev 1443)
@@ -937,7 +937,7 @@
 
        if (type != NOTIFY_TYPE_CHANGE || !fd->change) return;
        
-       switch(fd->change->type)
+       switch (fd->change->type)
                {
                case FILEDATA_CHANGE_MOVE:
                        collect_manager_moved(fd);

Modified: trunk/src/collect.c
===================================================================
--- trunk/src/collect.c 2009-02-28 20:48:47 UTC (rev 1442)
+++ trunk/src/collect.c 2009-02-28 20:52:51 UTC (rev 1443)
@@ -132,7 +132,7 @@
        const CollectInfo *cia = a;
        const CollectInfo *cib = b;
 
-       switch(collection_list_sort_method)
+       switch (collection_list_sort_method)
                {
                case SORT_NAME:
                        break;
@@ -763,7 +763,7 @@
 
        if (type != NOTIFY_TYPE_CHANGE || !fd->change) return;
        
-       switch(fd->change->type)
+       switch (fd->change->type)
                {
                case FILEDATA_CHANGE_MOVE:
                case FILEDATA_CHANGE_RENAME:

Modified: trunk/src/dupe.c
===================================================================
--- trunk/src/dupe.c    2009-02-28 20:48:47 UTC (rev 1442)
+++ trunk/src/dupe.c    2009-02-28 20:52:51 UTC (rev 1443)
@@ -3557,7 +3557,7 @@
 
        if (type != NOTIFY_TYPE_CHANGE || !fd->change) return;
        
-       switch(fd->change->type)
+       switch (fd->change->type)
                {
                case FILEDATA_CHANGE_MOVE:
                case FILEDATA_CHANGE_RENAME:

Modified: trunk/src/img-view.c
===================================================================
--- trunk/src/img-view.c        2009-02-28 20:48:47 UTC (rev 1442)
+++ trunk/src/img-view.c        2009-02-28 20:52:51 UTC (rev 1443)
@@ -1679,7 +1679,7 @@
 
        if (type != NOTIFY_TYPE_CHANGE || !fd->change) return;
        
-       switch(fd->change->type)
+       switch (fd->change->type)
                {
                case FILEDATA_CHANGE_MOVE:
                case FILEDATA_CHANGE_RENAME:

Modified: trunk/src/layout_image.c
===================================================================
--- trunk/src/layout_image.c    2009-02-28 20:48:47 UTC (rev 1442)
+++ trunk/src/layout_image.c    2009-02-28 20:52:51 UTC (rev 1443)
@@ -1790,7 +1790,7 @@
 
        if (type != NOTIFY_TYPE_CHANGE || !fd->change) return;
        
-       switch(fd->change->type)
+       switch (fd->change->type)
                {
                case FILEDATA_CHANGE_MOVE:
                case FILEDATA_CHANGE_RENAME:

Modified: trunk/src/metadata.c
===================================================================
--- trunk/src/metadata.c        2009-02-28 20:48:47 UTC (rev 1442)
+++ trunk/src/metadata.c        2009-02-28 20:52:51 UTC (rev 1443)
@@ -319,7 +319,7 @@
                        continue;
                        }
                
-               switch(key)
+               switch (key)
                        {
                        case MK_NONE:
                                break;

Modified: trunk/src/preferences.c
===================================================================
--- trunk/src/preferences.c     2009-02-28 20:48:47 UTC (rev 1442)
+++ trunk/src/preferences.c     2009-02-28 20:52:51 UTC (rev 1443)
@@ -783,7 +783,7 @@
 
        gtk_tree_model_get(tree_model, iter, 0, &fe, -1);
 
-       switch(GPOINTER_TO_INT(data))
+       switch (GPOINTER_TO_INT(data))
                {
                case FE_ENABLE:
                        g_object_set(GTK_CELL_RENDERER(cell),

Modified: trunk/src/print.c
===================================================================
--- trunk/src/print.c   2009-02-28 20:48:47 UTC (rev 1442)
+++ trunk/src/print.c   2009-02-28 20:52:51 UTC (rev 1443)
@@ -2679,7 +2679,7 @@
 {
        RenderFormat format;
 
-       switch(pw->output)
+       switch (pw->output)
                {
                case PRINT_OUTPUT_RGB_FILE:
                        format = RENDER_FORMAT_RGB;

Modified: trunk/src/search.c
===================================================================
--- trunk/src/search.c  2009-02-28 20:48:47 UTC (rev 1442)
+++ trunk/src/search.c  2009-02-28 20:52:51 UTC (rev 1443)
@@ -2937,7 +2937,7 @@
 
        if (type != NOTIFY_TYPE_CHANGE || !fd->change) return;
        
-       switch(fd->change->type)
+       switch (fd->change->type)
                {
                case FILEDATA_CHANGE_MOVE:
                case FILEDATA_CHANGE_RENAME:

Modified: trunk/src/view_dir.c
===================================================================
--- trunk/src/view_dir.c        2009-02-28 20:48:47 UTC (rev 1442)
+++ trunk/src/view_dir.c        2009-02-28 20:52:51 UTC (rev 1443)
@@ -46,7 +46,7 @@
                gtk_widget_destroy(vd->popup);
                }
 
-       switch(vd->type)
+       switch (vd->type)
        {
        case DIRVIEW_LIST: vdlist_destroy_cb(widget, data); break;
        case DIRVIEW_TREE: vdtree_destroy_cb(widget, data); break;
@@ -87,7 +87,7 @@
 
        vd->pf = folder_icons_new();
 
-       switch(type)
+       switch (type)
        {
        case DIRVIEW_LIST: vd = vdlist_new(vd, dir_fd); break;
        case DIRVIEW_TREE: vd = vdtree_new(vd, dir_fd); break;
@@ -135,7 +135,7 @@
 
        file_data_unregister_notify_func(vd_notify_cb, vd);
 
-       switch(vd->type)
+       switch (vd->type)
        {
        case DIRVIEW_LIST: ret = vdlist_set_fd(vd, dir_fd); break;
        case DIRVIEW_TREE: ret = vdtree_set_fd(vd, dir_fd); break;
@@ -148,7 +148,7 @@
 
 void vd_refresh(ViewDir *vd)
 {
-       switch(vd->type)
+       switch (vd->type)
        {
        case DIRVIEW_LIST: vdlist_refresh(vd); break;
        case DIRVIEW_TREE: vdtree_refresh(vd); break;
@@ -159,7 +159,7 @@
 {
        const gchar *ret = NULL;
 
-       switch(vd->type)
+       switch (vd->type)
        {
        case DIRVIEW_LIST: ret = vdlist_row_get_path(vd, row); break;
        case DIRVIEW_TREE: ret = vdtree_row_get_path(vd, row); break;
@@ -170,7 +170,7 @@
 
 void vd_select_row(ViewDir *vd, FileData *fd)
 {
-       switch(vd->type)
+       switch (vd->type)
        {
        case DIRVIEW_LIST: vdlist_select_row(vd, fd); break;
        case DIRVIEW_TREE: vdtree_select_row(vd, fd); break;
@@ -181,7 +181,7 @@
 {
        gint ret = FALSE;
 
-       switch(vd->type)
+       switch (vd->type)
        {
        case DIRVIEW_LIST: ret = vdlist_find_row(vd, fd, iter); break;
        case DIRVIEW_TREE: ret = vdtree_find_row(vd, fd, iter, NULL); break;
@@ -260,7 +260,7 @@
        if (vd_find_row(vd, fd, &iter) < 0) return;
        store = gtk_tree_view_get_model(GTK_TREE_VIEW(vd->view));
 
-       switch(vd->type)
+       switch (vd->type)
        {
        case DIRVIEW_LIST:
                gtk_list_store_set(GTK_LIST_STORE(store), &iter, 
DIR_COLUMN_COLOR, color_set, -1);
@@ -508,7 +508,7 @@
        FileData *fd = NULL;
        if (!success) return;
 
-       switch(vd->type)
+       switch (vd->type)
                {
                case DIRVIEW_LIST:
                        {
@@ -532,7 +532,7 @@
        ViewDir *vd = data;
        FileData *dir_fd = NULL;
 
-       switch(vd->type)
+       switch (vd->type)
                {
                case DIRVIEW_LIST:
                        {
@@ -569,7 +569,7 @@
        gint i;
 
        active = (fd != NULL);
-       switch(vd->type)
+       switch (vd->type)
                {
                case DIRVIEW_LIST:
                        {
@@ -1003,7 +1003,7 @@
        ViewDir *vd = data;
        gint ret = FALSE;
 
-       switch(vd->type)
+       switch (vd->type)
        {
        case DIRVIEW_LIST: ret = vdlist_press_key_cb(widget, event, data); 
break;
        case DIRVIEW_TREE: ret = vdtree_press_key_cb(widget, event, data); 
break;
@@ -1017,7 +1017,7 @@
        ViewDir *vd = data;
        gint ret = FALSE;
 
-       switch(vd->type)
+       switch (vd->type)
        {
        case DIRVIEW_LIST: ret = vdlist_press_cb(widget, bevent, data); break;
        case DIRVIEW_TREE: ret = vdtree_press_cb(widget, bevent, data); break;

Modified: trunk/src/view_file.c
===================================================================
--- trunk/src/view_file.c       2009-02-28 20:48:47 UTC (rev 1442)
+++ trunk/src/view_file.c       2009-02-28 20:52:51 UTC (rev 1443)
@@ -40,7 +40,7 @@
 
 void vf_sort_set(ViewFile *vf, SortType type, gint ascend)
 {
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: vflist_sort_set(vf, type, ascend); break;
        case FILEVIEW_ICON: vficon_sort_set(vf, type, ascend); break;
@@ -57,7 +57,7 @@
 {
        FileData *fd = NULL;
 
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: fd = vflist_index_get_data(vf, row); break;
        case FILEVIEW_ICON: fd = vficon_index_get_data(vf, row); break;
@@ -70,7 +70,7 @@
 {
        gint index = -1;
 
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: index = vflist_index_by_path(vf, path); break;
        case FILEVIEW_ICON: index = vficon_index_by_path(vf, path); break;
@@ -83,7 +83,7 @@
 {
        guint count = 0;
 
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: count = vflist_count(vf, bytes); break;
        case FILEVIEW_ICON: count = vficon_count(vf, bytes); break;
@@ -96,7 +96,7 @@
 {
        GList *list = NULL;
 
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: list = vflist_get_list(vf); break;
        case FILEVIEW_ICON: list = vficon_get_list(vf); break;
@@ -117,7 +117,7 @@
        ViewFile *vf = data;
        gint ret = FALSE;
 
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: ret = vflist_press_key_cb(widget, event, data); 
break;
        case FILEVIEW_ICON: ret = vficon_press_key_cb(widget, event, data); 
break;
@@ -137,7 +137,7 @@
        ViewFile *vf = data;
        gint ret = FALSE;
 
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: ret = vflist_press_cb(widget, bevent, data); break;
        case FILEVIEW_ICON: ret = vficon_press_cb(widget, bevent, data); break;
@@ -151,7 +151,7 @@
        ViewFile *vf = data;
        gint ret = FALSE;
 
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: ret = vflist_release_cb(widget, bevent, data); 
break;
        case FILEVIEW_ICON: ret = vficon_release_cb(widget, bevent, data); 
break;
@@ -171,7 +171,7 @@
 {
        guint count = 0;
 
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: count = vflist_selection_count(vf, bytes); break;
        case FILEVIEW_ICON: count = vficon_selection_count(vf, bytes); break;
@@ -184,7 +184,7 @@
 {
        GList *list = NULL;
 
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: list = vflist_selection_get_list(vf); break;
        case FILEVIEW_ICON: list = vficon_selection_get_list(vf); break;
@@ -197,7 +197,7 @@
 {
        GList *list = NULL;
 
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: list = vflist_selection_get_list_by_index(vf); 
break;
        case FILEVIEW_ICON: list = vficon_selection_get_list_by_index(vf); 
break;
@@ -208,7 +208,7 @@
 
 void vf_select_all(ViewFile *vf)
 {
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: vflist_select_all(vf); break;
        case FILEVIEW_ICON: vficon_select_all(vf); break;
@@ -217,7 +217,7 @@
 
 void vf_select_none(ViewFile *vf)
 {
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: vflist_select_none(vf); break;
        case FILEVIEW_ICON: vficon_select_none(vf); break;
@@ -226,7 +226,7 @@
 
 void vf_select_invert(ViewFile *vf)
 {
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: vflist_select_invert(vf); break;
        case FILEVIEW_ICON: vficon_select_invert(vf); break;
@@ -235,7 +235,7 @@
 
 void vf_select_by_fd(ViewFile *vf, FileData *fd)
 {
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: vflist_select_by_fd(vf, fd); break;
        case FILEVIEW_ICON: vficon_select_by_fd(vf, fd); break;
@@ -244,7 +244,7 @@
 
 void vf_mark_to_selection(ViewFile *vf, gint mark, MarkToSelectionMode mode)
 {
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: vflist_mark_to_selection(vf, mark, mode); break;
        case FILEVIEW_ICON: vficon_mark_to_selection(vf, mark, mode); break;
@@ -253,7 +253,7 @@
 
 void vf_selection_to_mark(ViewFile *vf, gint mark, SelectionToMarkMode mode)
 {
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: vflist_selection_to_mark(vf, mark, mode); break;
        case FILEVIEW_ICON: vficon_selection_to_mark(vf, mark, mode); break;
@@ -269,7 +269,7 @@
 
 static void vf_dnd_init(ViewFile *vf)
 {
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: vflist_dnd_init(vf); break;
        case FILEVIEW_ICON: vficon_dnd_init(vf); break;
@@ -286,7 +286,7 @@
 {
        GList *ret = NULL;
 
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: ret = vflist_pop_menu_file_list(vf); break;
        case FILEVIEW_ICON: ret = vficon_pop_menu_file_list(vf); break;
@@ -314,7 +314,7 @@
 {
        ViewFile *vf = data;
 
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: vflist_pop_menu_view_cb(widget, data); break;
        case FILEVIEW_ICON: vficon_pop_menu_view_cb(widget, data); break;
@@ -339,7 +339,7 @@
 {
        ViewFile *vf = data;
 
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: vflist_pop_menu_rename_cb(widget, data); break;
        case FILEVIEW_ICON: vficon_pop_menu_rename_cb(widget, data); break;
@@ -444,7 +444,7 @@
        
        if (!vf->layout) return;
 
-       switch(vf->layout->file_view_type)
+       switch (vf->layout->file_view_type)
        {
        case FILEVIEW_LIST:
                layout_views_set(vf->layout, vf->layout->options.dir_view_type, 
FILEVIEW_ICON);
@@ -459,7 +459,7 @@
 {
        ViewFile *vf = data;
 
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: vflist_pop_menu_refresh_cb(widget, data); break;
        case FILEVIEW_ICON: vficon_pop_menu_refresh_cb(widget, data); break;
@@ -470,7 +470,7 @@
 {
        ViewFile *vf = data;
 
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: vflist_popup_destroy_cb(widget, data); break;
        case FILEVIEW_ICON: vficon_popup_destroy_cb(widget, data); break;
@@ -484,7 +484,7 @@
        GtkWidget *submenu;
        gint active = 0;
 
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST:
                vflist_color_set(vf, VFLIST(vf)->click_fd, TRUE);
@@ -580,7 +580,7 @@
        menu_item_add_check(menu, _("View as _icons"), (vf->type == 
FILEVIEW_ICON),
                            G_CALLBACK(vf_pop_menu_toggle_view_type_cb), vf);
 
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST:
                menu_item_add_check(menu, _("Show _thumbnails"), 
VFLIST(vf)->thumbs_enabled,
@@ -601,7 +601,7 @@
 {
        gint ret = FALSE;
 
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: ret = vflist_refresh(vf); break;
        case FILEVIEW_ICON: ret = vficon_refresh(vf); break;
@@ -614,7 +614,7 @@
 {
        gint ret = FALSE;
 
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: ret = vflist_set_fd(vf, dir_fd); break;
        case FILEVIEW_ICON: ret = vficon_set_fd(vf, dir_fd); break;
@@ -627,7 +627,7 @@
 {
        ViewFile *vf = data;
 
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: vflist_destroy_cb(widget, data); break;
        case FILEVIEW_ICON: vficon_destroy_cb(widget, data); break;
@@ -711,7 +711,7 @@
        g_signal_connect(G_OBJECT(vf->widget), "destroy",
                         G_CALLBACK(vf_destroy_cb), vf);
 
-       switch(type)
+       switch (type)
        {
        case FILEVIEW_LIST: vf = vflist_new(vf, dir_fd); break;
        case FILEVIEW_ICON: vf = vficon_new(vf, dir_fd); break;
@@ -748,7 +748,7 @@
 
 void vf_thumb_set(ViewFile *vf, gint enable)
 {
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: vflist_thumb_set(vf, enable); break;
        case FILEVIEW_ICON: /*vficon_thumb_set(vf, enable);*/ break;
@@ -761,7 +761,7 @@
 
        vf->marks_enabled = enable;
 
-       switch(vf->type)
+       switch (vf->type)
        {
        case FILEVIEW_LIST: vflist_marks_set(vf, enable); break;
        case FILEVIEW_ICON: vficon_marks_set(vf, enable); break;


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H
_______________________________________________
Geeqie-svn mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geeqie-svn

Reply via email to