diff src/view_file.c @ 1347:79937bc55f3a

Add missing space between switch and first parenthesis.
author zas_
date Sat, 28 Feb 2009 20:52:51 +0000
parents 55ea4962887a
children 249bf204004a
line wrap: on
line diff
--- a/src/view_file.c	Sat Feb 28 20:48:47 2009 +0000
+++ b/src/view_file.c	Sat Feb 28 20:52:51 2009 +0000
@@ -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;