gnome-commander r1741 - branches/gcmd-1-3/src



Author: epiotr
Date: Wed Apr 30 16:31:48 2008
New Revision: 1741
URL: http://svn.gnome.org/viewvc/gnome-commander?rev=1741&view=rev

Log:
wq

Modified:
   branches/gcmd-1-3/src/gnome-cmd-user-actions.cc
   branches/gcmd-1-3/src/gnome-cmd-user-actions.h

Modified: branches/gcmd-1-3/src/gnome-cmd-user-actions.cc
==============================================================================
--- branches/gcmd-1-3/src/gnome-cmd-user-actions.cc	(original)
+++ branches/gcmd-1-3/src/gnome-cmd-user-actions.cc	Wed Apr 30 16:31:48 2008
@@ -1220,13 +1220,13 @@
 }
 
 
-void connections_change (GtkMenuItem *menuitem, gpointer con)
+void connections_change (GtkMenuItem *menuitem, gpointer con)           // this function is NOT exposed to user as UserAction
 {
     gnome_cmd_file_selector_set_connection (get_fs (ACTIVE), (GnomeCmdCon *) con);
 }
 
 
-void connections_close (GtkMenuItem *menuitem, gpointer con)
+void connections_close (GtkMenuItem *menuitem, gpointer con)            // this function is NOT exposed to user as UserAction
 {
     GnomeCmdFileSelector *active = get_fs (ACTIVE);
     GnomeCmdFileSelector *inactive = get_fs (INACTIVE);

Modified: branches/gcmd-1-3/src/gnome-cmd-user-actions.h
==============================================================================
--- branches/gcmd-1-3/src/gnome-cmd-user-actions.h	(original)
+++ branches/gcmd-1-3/src/gnome-cmd-user-actions.h	Wed Apr 30 16:31:48 2008
@@ -296,8 +296,8 @@
 /************** Connections Menu **************/
 GNOME_CMD_USER_ACTION(connections_open);
 GNOME_CMD_USER_ACTION(connections_new);
-GNOME_CMD_USER_ACTION(connections_change);
-GNOME_CMD_USER_ACTION(connections_close);
+GNOME_CMD_USER_ACTION(connections_change);          // this function is NOT exposed to user as UserAction
+GNOME_CMD_USER_ACTION(connections_close);           // this function is NOT exposed to user as UserAction
 GNOME_CMD_USER_ACTION(connections_close_current);
 
 /************** Plugins Menu ***********/



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