gnome-commander r1747 - in branches/gcmd-1-3: . src



Author: epiotr
Date: Thu May  1 22:13:23 2008
New Revision: 1747
URL: http://svn.gnome.org/viewvc/gnome-commander?rev=1747&view=rev

Log:
Do not pass unused pointer to main_win

Modified:
   branches/gcmd-1-3/ChangeLog
   branches/gcmd-1-3/src/gnome-cmd-main-win.cc

Modified: branches/gcmd-1-3/src/gnome-cmd-main-win.cc
==============================================================================
--- branches/gcmd-1-3/src/gnome-cmd-main-win.cc	(original)
+++ branches/gcmd-1-3/src/gnome-cmd-main-win.cc	Thu May  1 22:13:23 2008
@@ -349,61 +349,61 @@
 
 static void on_help_clicked (GtkButton *button, GnomeCmdMainWin *mw)
 {
-    help_help (NULL, mw);
+    help_help (NULL);
 }
 
 
 static void on_rename_clicked (GtkButton *button, GnomeCmdMainWin *mw)
 {
-    file_rename (NULL, mw);
+    file_rename (NULL);
 }
 
 
 static void on_view_clicked (GtkButton *button, GnomeCmdMainWin *mw)
 {
-    file_view (NULL, mw);
+    file_view (NULL);
 }
 
 
 static void on_edit_clicked (GtkButton *button, GnomeCmdMainWin *mw)
 {
-    file_edit (NULL, mw);
+    file_edit (NULL);
 }
 
 
 static void on_copy_clicked (GtkButton *button, GnomeCmdMainWin *mw)
 {
-    file_copy (NULL, mw);
+    file_copy (NULL);
 }
 
 
 static void on_move_clicked (GtkButton *button, GnomeCmdMainWin *mw)
 {
-    file_move (NULL, mw);
+    file_move (NULL);
 }
 
 
 static void on_mkdir_clicked(GtkButton *button, GnomeCmdMainWin *mw)
 {
-    file_mkdir (NULL, mw);
+    file_mkdir (NULL);
 }
 
 
 static void on_delete_clicked (GtkButton *button, GnomeCmdMainWin *mw)
 {
-    file_delete (NULL, mw);
+    file_delete (NULL);
 }
 
 
 static void on_search_clicked (GtkButton *button, GnomeCmdMainWin *mw)
 {
-    edit_search (NULL, mw);
+    edit_search (NULL);
 }
 
 
 static void on_quit_clicked (GtkButton *button, GnomeCmdMainWin *mw)
 {
-    file_exit (NULL, mw);
+    file_exit (NULL);
 }
 
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]