gnome-commander r1746 - in trunk: . src
- From: epiotr svn gnome org
- To: svn-commits-list gnome org
- Subject: gnome-commander r1746 - in trunk: . src
- Date: Thu, 1 May 2008 23:12:58 +0100 (BST)
Author: epiotr
Date: Thu May 1 22:12:58 2008
New Revision: 1746
URL: http://svn.gnome.org/viewvc/gnome-commander?rev=1746&view=rev
Log:
Do not pass unused pointer to main_win
Modified:
trunk/ChangeLog
trunk/src/gnome-cmd-main-win.cc
Modified: trunk/src/gnome-cmd-main-win.cc
==============================================================================
--- trunk/src/gnome-cmd-main-win.cc (original)
+++ trunk/src/gnome-cmd-main-win.cc Thu May 1 22:12:58 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]