Clean up indentation.
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Tue, 4 Dec 2007 07:50:44 +0000 (07:50 +0000)
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Tue, 4 Dec 2007 07:50:44 +0000 (07:50 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23745 f5534014-38df-0310-8fa8-9805f1628bb7

gtk/conversations_table.c
gtk/expert_comp_table.c

index eaddc27d1860998b61b704afe02292bd6cd17faa..493f17d4604986b45a002191ca90c3337c04cde7 100644 (file)
@@ -684,14 +684,14 @@ ct_select_filter_cb(GtkWidget *widget _U_, gpointer callback_data, guint callbac
 static gint
 ct_show_popup_menu_cb(void *widg _U_, GdkEvent *event, conversations_table *ct)
 {
-       GdkEventButton *bevent = (GdkEventButton *)event;
+    GdkEventButton *bevent = (GdkEventButton *)event;
     gint row;
     gint column;
 
 
     /* To quote the "Gdk Event Structures" doc:
      * "Normally button 1 is the left mouse button, 2 is the middle button, and 3 is the right button" */
-       if(event->type==GDK_BUTTON_PRESS && bevent->button==3){
+    if(event->type==GDK_BUTTON_PRESS && bevent->button==3){
         /* if this is a right click on one of our columns, select it and popup the context menu */
         if(gtk_clist_get_selection_info(ct->table,
                                           (gint) (((GdkEventButton *)event)->x),
@@ -700,12 +700,12 @@ ct_show_popup_menu_cb(void *widg _U_, GdkEvent *event, conversations_table *ct)
             gtk_clist_unselect_all(ct->table);
             gtk_clist_select_row(ct->table, row, -1);
 
-                   gtk_menu_popup(GTK_MENU(ct->menu), NULL, NULL, NULL, NULL,
-                           bevent->button, bevent->time);
+            gtk_menu_popup(GTK_MENU(ct->menu), NULL, NULL, NULL, NULL,
+                bevent->button, bevent->time);
         }
     }
 
-       return FALSE;
+    return FALSE;
 }
 
 static GtkItemFactoryEntry ct_list_menu_items[] =
index 66a6ac6d2a826dc978a338eb881c374694082c7f..e361ae4510cc685fc76d2c7d0b3a7b73aaab06c7 100644 (file)
@@ -343,7 +343,7 @@ error_select_filter_cb(GtkWidget *widget _U_, gpointer callback_data, guint call
          * So regardless of the type we will just bring up the find window and allow
          * the user to modify the search criteria and options.
          */
-            find_frame_with_filter(str);
+        find_frame_with_filter(str);
         break;
     case 3:
         /* find next */