gnome-commander r2085 - in trunk/src: . intviewer
- From: epiotr svn gnome org
- To: svn-commits-list gnome org
- Subject: gnome-commander r2085 - in trunk/src: . intviewer
- Date: Sun, 14 Sep 2008 21:50:22 +0000 (UTC)
Author: epiotr
Date: Sun Sep 14 21:50:22 2008
New Revision: 2085
URL: http://svn.gnome.org/viewvc/gnome-commander?rev=2085&view=rev
Log:
Code cleanup
Modified:
trunk/src/eggcellrendererkeys.cc
trunk/src/gnome-cmd-about-plugin.cc
trunk/src/gnome-cmd-advrename-dialog.cc
trunk/src/gnome-cmd-bookmark-dialog.cc
trunk/src/gnome-cmd-chmod-component.cc
trunk/src/gnome-cmd-chmod-dialog.cc
trunk/src/gnome-cmd-chown-component.cc
trunk/src/gnome-cmd-chown-dialog.cc
trunk/src/gnome-cmd-clist.cc
trunk/src/gnome-cmd-cmdline.cc
trunk/src/gnome-cmd-combo.cc
trunk/src/gnome-cmd-con-device.cc
trunk/src/gnome-cmd-con-ftp.cc
trunk/src/gnome-cmd-con-home.cc
trunk/src/gnome-cmd-con-list.cc
trunk/src/gnome-cmd-con-list.h
trunk/src/gnome-cmd-con-smb.cc
trunk/src/gnome-cmd-con.cc
trunk/src/gnome-cmd-dir-indicator.cc
trunk/src/gnome-cmd-dir.cc
trunk/src/gnome-cmd-file-popmenu.cc
trunk/src/gnome-cmd-file-selector.cc
trunk/src/gnome-cmd-file.cc
trunk/src/gnome-cmd-hintbox.h
trunk/src/gnome-cmd-list-popmenu.cc
trunk/src/gnome-cmd-main-menu.cc
trunk/src/gnome-cmd-main-win.cc
trunk/src/gnome-cmd-make-copy-dialog.cc
trunk/src/gnome-cmd-mkdir-dialog.cc
trunk/src/gnome-cmd-options-dialog.cc
trunk/src/gnome-cmd-path.cc
trunk/src/gnome-cmd-patternsel-dialog.cc
trunk/src/gnome-cmd-plain-path.cc
trunk/src/gnome-cmd-prepare-xfer-dialog.cc
trunk/src/gnome-cmd-quicksearch-popup.cc
trunk/src/gnome-cmd-remote-dialog.cc
trunk/src/gnome-cmd-rename-dialog.cc
trunk/src/gnome-cmd-search-dialog.cc
trunk/src/gnome-cmd-smb-auth.cc
trunk/src/gnome-cmd-smb-path.cc
trunk/src/gnome-cmd-style.cc
trunk/src/gnome-cmd-xfer-progress-win.cc
trunk/src/imageloader.cc
trunk/src/intviewer/image-render.cc
trunk/src/intviewer/scroll-box.cc
trunk/src/intviewer/search-dlg.cc
trunk/src/intviewer/search-progress-dlg.cc
trunk/src/intviewer/text-render.cc
trunk/src/intviewer/viewer-widget.cc
trunk/src/intviewer/viewer-window.cc
trunk/src/ls_colors.cc
trunk/src/owner.cc
trunk/src/plugin_manager.cc
trunk/src/utils.cc
Modified: trunk/src/eggcellrendererkeys.cc
==============================================================================
--- trunk/src/eggcellrendererkeys.cc (original)
+++ trunk/src/eggcellrendererkeys.cc Sun Sep 14 21:50:22 2008
@@ -86,7 +86,7 @@
static GtkCellRendererTextClass *parent_class = NULL;
-GType egg_cell_renderer_keys_get_type (void)
+GType egg_cell_renderer_keys_get_type ()
{
static GType cell_keys_type = 0;
@@ -217,7 +217,7 @@
}
-GtkCellRenderer *egg_cell_renderer_keys_new (void)
+GtkCellRenderer *egg_cell_renderer_keys_new ()
{
return GTK_CELL_RENDERER (g_object_new (EGG_TYPE_CELL_RENDERER_KEYS, NULL));
}
@@ -563,7 +563,7 @@
}
-static GType pointless_eventbox_subclass_get_type (void)
+static GType pointless_eventbox_subclass_get_type ()
{
static GType eventbox_type = 0;
Modified: trunk/src/gnome-cmd-about-plugin.cc
==============================================================================
--- trunk/src/gnome-cmd-about-plugin.cc (original)
+++ trunk/src/gnome-cmd-about-plugin.cc Sun Sep 14 21:50:22 2008
@@ -155,7 +155,7 @@
}
-inline GtkWidget *_create_label (void)
+inline GtkWidget *_create_label ()
{
GtkWidget *label = gtk_label_new ("");
Modified: trunk/src/gnome-cmd-advrename-dialog.cc
==============================================================================
--- trunk/src/gnome-cmd-advrename-dialog.cc (original)
+++ trunk/src/gnome-cmd-advrename-dialog.cc Sun Sep 14 21:50:22 2008
@@ -490,7 +490,7 @@
}
-inline RenameEntry *rename_entry_new (void)
+inline RenameEntry *rename_entry_new ()
{
return g_new0 (RenameEntry, 1);
}
@@ -1266,7 +1266,7 @@
}
-GtkType gnome_cmd_advrename_dialog_get_type (void)
+GtkType gnome_cmd_advrename_dialog_get_type ()
{
static GtkType dlg_type = 0;
Modified: trunk/src/gnome-cmd-bookmark-dialog.cc
==============================================================================
--- trunk/src/gnome-cmd-bookmark-dialog.cc (original)
+++ trunk/src/gnome-cmd-bookmark-dialog.cc Sun Sep 14 21:50:22 2008
@@ -515,7 +515,7 @@
* Public functions
***********************************/
-GtkType gnome_cmd_bookmark_dialog_get_type (void)
+GtkType gnome_cmd_bookmark_dialog_get_type ()
{
static GtkType dlg_type = 0;
@@ -539,7 +539,7 @@
}
-GtkWidget *gnome_cmd_bookmark_dialog_new (void)
+GtkWidget *gnome_cmd_bookmark_dialog_new ()
{
GnomeCmdBookmarkDialog *dialog = (GnomeCmdBookmarkDialog *) gtk_type_new (gnome_cmd_bookmark_dialog_get_type ());
@@ -570,7 +570,7 @@
}
-void gnome_cmd_bookmark_add_current (void)
+void gnome_cmd_bookmark_add_current ()
{
GnomeCmdDir *cwd = gnome_cmd_main_win_get_fs (main_win, ACTIVE)->get_directory();
gchar *path = gnome_cmd_file_get_path (GNOME_CMD_FILE (cwd));
Modified: trunk/src/gnome-cmd-chmod-component.cc
==============================================================================
--- trunk/src/gnome-cmd-chmod-component.cc (original)
+++ trunk/src/gnome-cmd-chmod-component.cc Sun Sep 14 21:50:22 2008
@@ -177,7 +177,7 @@
}
-GtkType gnome_cmd_chmod_component_get_type (void)
+GtkType gnome_cmd_chmod_component_get_type ()
{
static GtkType type = 0;
Modified: trunk/src/gnome-cmd-chmod-dialog.cc
==============================================================================
--- trunk/src/gnome-cmd-chmod-dialog.cc (original)
+++ trunk/src/gnome-cmd-chmod-dialog.cc Sun Sep 14 21:50:22 2008
@@ -260,7 +260,7 @@
}
-GtkType gnome_cmd_chmod_dialog_get_type (void)
+GtkType gnome_cmd_chmod_dialog_get_type ()
{
static GtkType dlg_type = 0;
Modified: trunk/src/gnome-cmd-chown-component.cc
==============================================================================
--- trunk/src/gnome-cmd-chown-component.cc (original)
+++ trunk/src/gnome-cmd-chown-component.cc Sun Sep 14 21:50:22 2008
@@ -137,7 +137,7 @@
GtkWidget*
-gnome_cmd_chown_component_new (void)
+gnome_cmd_chown_component_new ()
{
GnomeCmdChownComponent *comp = (GnomeCmdChownComponent *) gtk_type_new (gnome_cmd_chown_component_get_type ());
@@ -149,7 +149,7 @@
GtkType
-gnome_cmd_chown_component_get_type (void)
+gnome_cmd_chown_component_get_type ()
{
static GtkType type = 0;
Modified: trunk/src/gnome-cmd-chown-dialog.cc
==============================================================================
--- trunk/src/gnome-cmd-chown-dialog.cc (original)
+++ trunk/src/gnome-cmd-chown-dialog.cc Sun Sep 14 21:50:22 2008
@@ -219,8 +219,7 @@
}
-GtkType
-gnome_cmd_chown_dialog_get_type (void)
+GtkType gnome_cmd_chown_dialog_get_type ()
{
static GtkType dlg_type = 0;
Modified: trunk/src/gnome-cmd-clist.cc
==============================================================================
--- trunk/src/gnome-cmd-clist.cc (original)
+++ trunk/src/gnome-cmd-clist.cc Sun Sep 14 21:50:22 2008
@@ -599,7 +599,7 @@
* Public functions
***********************************/
-GtkType gnome_cmd_clist_get_type (void)
+GtkType gnome_cmd_clist_get_type ()
{
static GtkType type = 0;
Modified: trunk/src/gnome-cmd-cmdline.cc
==============================================================================
--- trunk/src/gnome-cmd-cmdline.cc (original)
+++ trunk/src/gnome-cmd-cmdline.cc Sun Sep 14 21:50:22 2008
@@ -286,7 +286,7 @@
}
-GtkType gnome_cmd_cmdline_get_type (void)
+GtkType gnome_cmd_cmdline_get_type ()
{
static GtkType dlg_type = 0;
Modified: trunk/src/gnome-cmd-combo.cc
==============================================================================
--- trunk/src/gnome-cmd-combo.cc (original)
+++ trunk/src/gnome-cmd-combo.cc Sun Sep 14 21:50:22 2008
@@ -431,7 +431,7 @@
* Public functions
***********************************/
-guint gnome_cmd_combo_get_type (void)
+guint gnome_cmd_combo_get_type ()
{
static guint combo_type = 0;
Modified: trunk/src/gnome-cmd-con-device.cc
==============================================================================
--- trunk/src/gnome-cmd-con-device.cc (original)
+++ trunk/src/gnome-cmd-con-device.cc Sun Sep 14 21:50:22 2008
@@ -365,7 +365,7 @@
* Public functions
***********************************/
-GtkType gnome_cmd_con_device_get_type (void)
+GtkType gnome_cmd_con_device_get_type ()
{
static GtkType type = 0;
Modified: trunk/src/gnome-cmd-con-ftp.cc
==============================================================================
--- trunk/src/gnome-cmd-con-ftp.cc (original)
+++ trunk/src/gnome-cmd-con-ftp.cc Sun Sep 14 21:50:22 2008
@@ -217,7 +217,7 @@
* Public functions
***********************************/
-GtkType gnome_cmd_con_ftp_get_type (void)
+GtkType gnome_cmd_con_ftp_get_type ()
{
static GtkType type = 0;
Modified: trunk/src/gnome-cmd-con-home.cc
==============================================================================
--- trunk/src/gnome-cmd-con-home.cc (original)
+++ trunk/src/gnome-cmd-con-home.cc Sun Sep 14 21:50:22 2008
@@ -144,7 +144,7 @@
* Public functions
***********************************/
-GtkType gnome_cmd_con_home_get_type (void)
+GtkType gnome_cmd_con_home_get_type ()
{
static GtkType type = 0;
@@ -168,7 +168,7 @@
}
-GnomeCmdCon *gnome_cmd_con_home_new (void)
+GnomeCmdCon *gnome_cmd_con_home_new ()
{
GnomeCmdConHome *con = (GnomeCmdConHome *) gtk_type_new (gnome_cmd_con_home_get_type ());
Modified: trunk/src/gnome-cmd-con-list.cc
==============================================================================
--- trunk/src/gnome-cmd-con-list.cc (original)
+++ trunk/src/gnome-cmd-con-list.cc Sun Sep 14 21:50:22 2008
@@ -163,7 +163,7 @@
* Public functions
***********************************/
-GtkType gnome_cmd_con_list_get_type (void)
+GtkType gnome_cmd_con_list_get_type ()
{
static GtkType type = 0;
@@ -187,7 +187,7 @@
}
-GnomeCmdConList *gnome_cmd_con_list_new (void)
+GnomeCmdConList *gnome_cmd_con_list_new ()
{
return (GnomeCmdConList *) gtk_type_new (gnome_cmd_con_list_get_type ());
}
Modified: trunk/src/gnome-cmd-con-list.h
==============================================================================
--- trunk/src/gnome-cmd-con-list.h (original)
+++ trunk/src/gnome-cmd-con-list.h Sun Sep 14 21:50:22 2008
@@ -61,7 +61,7 @@
GnomeCmdConList *gnome_cmd_con_list_new (void);
-inline GnomeCmdConList *gnome_cmd_con_list_get (void)
+inline GnomeCmdConList *gnome_cmd_con_list_get ()
{
return (GnomeCmdConList *) gnome_cmd_data_get_con_list ();
}
@@ -96,12 +96,12 @@
GnomeCmdCon *gnome_cmd_con_list_get_home (GnomeCmdConList *list);
GnomeCmdCon *gnome_cmd_con_list_get_smb (GnomeCmdConList *con_list);
-inline GnomeCmdCon *get_home_con (void)
+inline GnomeCmdCon *get_home_con ()
{
return gnome_cmd_con_list_get_home (gnome_cmd_con_list_get ());
}
-inline GnomeCmdCon *get_smb_con (void)
+inline GnomeCmdCon *get_smb_con ()
{
return gnome_cmd_con_list_get_smb (gnome_cmd_con_list_get ());
}
Modified: trunk/src/gnome-cmd-con-smb.cc
==============================================================================
--- trunk/src/gnome-cmd-con-smb.cc (original)
+++ trunk/src/gnome-cmd-con-smb.cc Sun Sep 14 21:50:22 2008
@@ -235,8 +235,7 @@
* Public functions
***********************************/
-GtkType
-gnome_cmd_con_smb_get_type (void)
+GtkType gnome_cmd_con_smb_get_type ()
{
static GtkType type = 0;
@@ -261,7 +260,7 @@
GnomeCmdCon *
-gnome_cmd_con_smb_new (void)
+gnome_cmd_con_smb_new ()
{
return GNOME_CMD_CON (gtk_type_new (gnome_cmd_con_smb_get_type ()));
}
Modified: trunk/src/gnome-cmd-con.cc
==============================================================================
--- trunk/src/gnome-cmd-con.cc (original)
+++ trunk/src/gnome-cmd-con.cc Sun Sep 14 21:50:22 2008
@@ -218,7 +218,7 @@
* Public functions
***********************************/
-GtkType gnome_cmd_con_get_type (void)
+GtkType gnome_cmd_con_get_type ()
{
static GtkType type = 0;
Modified: trunk/src/gnome-cmd-dir-indicator.cc
==============================================================================
--- trunk/src/gnome-cmd-dir-indicator.cc (original)
+++ trunk/src/gnome-cmd-dir-indicator.cc Sun Sep 14 21:50:22 2008
@@ -480,7 +480,7 @@
/***********************************
* Public functions
***********************************/
-GtkType gnome_cmd_dir_indicator_get_type (void)
+GtkType gnome_cmd_dir_indicator_get_type ()
{
static GtkType type = 0;
Modified: trunk/src/gnome-cmd-dir.cc
==============================================================================
--- trunk/src/gnome-cmd-dir.cc (original)
+++ trunk/src/gnome-cmd-dir.cc Sun Sep 14 21:50:22 2008
@@ -229,7 +229,7 @@
* Public functions
***********************************/
-GtkType gnome_cmd_dir_get_type (void)
+GtkType gnome_cmd_dir_get_type ()
{
static GtkType type = 0;
Modified: trunk/src/gnome-cmd-file-popmenu.cc
==============================================================================
--- trunk/src/gnome-cmd-file-popmenu.cc (original)
+++ trunk/src/gnome-cmd-file-popmenu.cc Sun Sep 14 21:50:22 2008
@@ -602,7 +602,7 @@
}
-GtkType gnome_cmd_file_popmenu_get_type (void)
+GtkType gnome_cmd_file_popmenu_get_type ()
{
static GtkType dlg_type = 0;
Modified: trunk/src/gnome-cmd-file-selector.cc
==============================================================================
--- trunk/src/gnome-cmd-file-selector.cc (original)
+++ trunk/src/gnome-cmd-file-selector.cc Sun Sep 14 21:50:22 2008
@@ -1362,7 +1362,7 @@
* Public functions
***********************************/
-GtkType gnome_cmd_file_selector_get_type (void)
+GtkType gnome_cmd_file_selector_get_type ()
{
static GtkType fs_type = 0;
@@ -1386,7 +1386,7 @@
}
-GtkWidget *gnome_cmd_file_selector_new (void)
+GtkWidget *gnome_cmd_file_selector_new ()
{
GnomeCmdFileSelector *fs = (GnomeCmdFileSelector *) gtk_type_new (gnome_cmd_file_selector_get_type ());
Modified: trunk/src/gnome-cmd-file.cc
==============================================================================
--- trunk/src/gnome-cmd-file.cc (original)
+++ trunk/src/gnome-cmd-file.cc Sun Sep 14 21:50:22 2008
@@ -138,7 +138,7 @@
* Public functions
***********************************/
-GtkType gnome_cmd_file_get_type (void)
+GtkType gnome_cmd_file_get_type ()
{
static GtkType type = 0;
Modified: trunk/src/gnome-cmd-hintbox.h
==============================================================================
--- trunk/src/gnome-cmd-hintbox.h (original)
+++ trunk/src/gnome-cmd-hintbox.h Sun Sep 14 21:50:22 2008
@@ -44,7 +44,7 @@
#define GNOME_CMD_TYPE_HINT_BOX (gnome_cmd_hint_box_get_type ())
-GType gnome_cmd_hint_box_get_type (void) G_GNUC_CONST;
+GType gnome_cmd_hint_box_get_type () G_GNUC_CONST;
GtkWidget *gnome_cmd_hint_box_new (const gchar *hint);
#endif // __GNOME_CMD_HINTBOX_H__
Modified: trunk/src/gnome-cmd-list-popmenu.cc
==============================================================================
--- trunk/src/gnome-cmd-list-popmenu.cc (original)
+++ trunk/src/gnome-cmd-list-popmenu.cc Sun Sep 14 21:50:22 2008
@@ -149,7 +149,7 @@
}
-GtkType gnome_cmd_list_popmenu_get_type (void)
+GtkType gnome_cmd_list_popmenu_get_type ()
{
static GtkType type = 0;
Modified: trunk/src/gnome-cmd-main-menu.cc
==============================================================================
--- trunk/src/gnome-cmd-main-menu.cc (original)
+++ trunk/src/gnome-cmd-main-menu.cc Sun Sep 14 21:50:22 2008
@@ -873,13 +873,13 @@
* Public functions
***********************************/
-GtkWidget *gnome_cmd_main_menu_new (void)
+GtkWidget *gnome_cmd_main_menu_new ()
{
return (GtkWidget *) gtk_type_new (gnome_cmd_main_menu_get_type ());
}
-GtkType gnome_cmd_main_menu_get_type (void)
+GtkType gnome_cmd_main_menu_get_type ()
{
static GtkType dlg_type = 0;
Modified: trunk/src/gnome-cmd-main-win.cc
==============================================================================
--- trunk/src/gnome-cmd-main-win.cc (original)
+++ trunk/src/gnome-cmd-main-win.cc Sun Sep 14 21:50:22 2008
@@ -851,7 +851,7 @@
}
-GtkType gnome_cmd_main_win_get_type (void)
+GtkType gnome_cmd_main_win_get_type ()
{
static GtkType mw_type = 0;
Modified: trunk/src/gnome-cmd-make-copy-dialog.cc
==============================================================================
--- trunk/src/gnome-cmd-make-copy-dialog.cc (original)
+++ trunk/src/gnome-cmd-make-copy-dialog.cc Sun Sep 14 21:50:22 2008
@@ -154,7 +154,7 @@
}
-GtkType gnome_cmd_make_copy_dialog_get_type (void)
+GtkType gnome_cmd_make_copy_dialog_get_type ()
{
static GtkType dlg_type = 0;
Modified: trunk/src/gnome-cmd-mkdir-dialog.cc
==============================================================================
--- trunk/src/gnome-cmd-mkdir-dialog.cc (original)
+++ trunk/src/gnome-cmd-mkdir-dialog.cc Sun Sep 14 21:50:22 2008
@@ -209,7 +209,7 @@
}
-GtkType gnome_cmd_mkdir_dialog_get_type (void)
+GtkType gnome_cmd_mkdir_dialog_get_type ()
{
static GtkType dlg_type = 0;
Modified: trunk/src/gnome-cmd-options-dialog.cc
==============================================================================
--- trunk/src/gnome-cmd-options-dialog.cc (original)
+++ trunk/src/gnome-cmd-options-dialog.cc Sun Sep 14 21:50:22 2008
@@ -1845,7 +1845,7 @@
***********************************/
-GtkType gnome_cmd_options_dialog_get_type (void)
+GtkType gnome_cmd_options_dialog_get_type ()
{
static GtkType dlg_type = 0;
@@ -1870,7 +1870,7 @@
}
-GtkWidget *gnome_cmd_options_dialog_new (void)
+GtkWidget *gnome_cmd_options_dialog_new ()
{
return (GtkWidget *) gtk_type_new (gnome_cmd_options_dialog_get_type ());
}
Modified: trunk/src/gnome-cmd-path.cc
==============================================================================
--- trunk/src/gnome-cmd-path.cc (original)
+++ trunk/src/gnome-cmd-path.cc Sun Sep 14 21:50:22 2008
@@ -63,7 +63,7 @@
* Public functions
***********************************/
-GtkType gnome_cmd_path_get_type (void)
+GtkType gnome_cmd_path_get_type ()
{
static GtkType type = 0;
Modified: trunk/src/gnome-cmd-patternsel-dialog.cc
==============================================================================
--- trunk/src/gnome-cmd-patternsel-dialog.cc (original)
+++ trunk/src/gnome-cmd-patternsel-dialog.cc Sun Sep 14 21:50:22 2008
@@ -151,7 +151,7 @@
}
-GtkType gnome_cmd_patternsel_dialog_get_type (void)
+GtkType gnome_cmd_patternsel_dialog_get_type ()
{
static GtkType dlg_type = 0;
Modified: trunk/src/gnome-cmd-plain-path.cc
==============================================================================
--- trunk/src/gnome-cmd-plain-path.cc (original)
+++ trunk/src/gnome-cmd-plain-path.cc Sun Sep 14 21:50:22 2008
@@ -140,7 +140,7 @@
* Public functions
***********************************/
-GtkType gnome_cmd_plain_path_get_type (void)
+GtkType gnome_cmd_plain_path_get_type ()
{
static GtkType type = 0;
Modified: trunk/src/gnome-cmd-prepare-xfer-dialog.cc
==============================================================================
--- trunk/src/gnome-cmd-prepare-xfer-dialog.cc (original)
+++ trunk/src/gnome-cmd-prepare-xfer-dialog.cc Sun Sep 14 21:50:22 2008
@@ -338,7 +338,7 @@
* Public functions
***********************************/
-GtkType gnome_cmd_prepare_xfer_dialog_get_type (void)
+GtkType gnome_cmd_prepare_xfer_dialog_get_type ()
{
static GtkType dlg_type = 0;
Modified: trunk/src/gnome-cmd-quicksearch-popup.cc
==============================================================================
--- trunk/src/gnome-cmd-quicksearch-popup.cc (original)
+++ trunk/src/gnome-cmd-quicksearch-popup.cc Sun Sep 14 21:50:22 2008
@@ -293,7 +293,7 @@
* Public functions
***********************************/
-GtkType gnome_cmd_quicksearch_popup_get_type (void)
+GtkType gnome_cmd_quicksearch_popup_get_type ()
{
static GtkType type = 0;
Modified: trunk/src/gnome-cmd-remote-dialog.cc
==============================================================================
--- trunk/src/gnome-cmd-remote-dialog.cc (original)
+++ trunk/src/gnome-cmd-remote-dialog.cc Sun Sep 14 21:50:22 2008
@@ -550,7 +550,7 @@
* Public functions
***********************************/
-GtkType gnome_cmd_remote_dialog_get_type (void)
+GtkType gnome_cmd_remote_dialog_get_type ()
{
static GtkType dlg_type = 0;
@@ -574,7 +574,7 @@
}
-GtkWidget *gnome_cmd_remote_dialog_new (void)
+GtkWidget *gnome_cmd_remote_dialog_new ()
{
GnomeCmdRemoteDialog *dialog = (GnomeCmdRemoteDialog *) gtk_type_new (gnome_cmd_remote_dialog_get_type ());
@@ -588,7 +588,7 @@
*
***********************************************/
-void show_quick_connect_dialog (void)
+void show_quick_connect_dialog ()
{
GnomeCmdConFtp *con = gnome_cmd_data_get_quick_connect ();
Modified: trunk/src/gnome-cmd-rename-dialog.cc
==============================================================================
--- trunk/src/gnome-cmd-rename-dialog.cc (original)
+++ trunk/src/gnome-cmd-rename-dialog.cc Sun Sep 14 21:50:22 2008
@@ -174,7 +174,7 @@
}
-GtkType gnome_cmd_rename_dialog_get_type (void)
+GtkType gnome_cmd_rename_dialog_get_type ()
{
static GtkType dlg_type = 0;
Modified: trunk/src/gnome-cmd-search-dialog.cc
==============================================================================
--- trunk/src/gnome-cmd-search-dialog.cc (original)
+++ trunk/src/gnome-cmd-search-dialog.cc Sun Sep 14 21:50:22 2008
@@ -962,7 +962,7 @@
* Public functions
***********************************/
-GtkType gnome_cmd_search_dialog_get_type (void)
+GtkType gnome_cmd_search_dialog_get_type ()
{
static GtkType dlg_type = 0;
Modified: trunk/src/gnome-cmd-smb-auth.cc
==============================================================================
--- trunk/src/gnome-cmd-smb-auth.cc (original)
+++ trunk/src/gnome-cmd-smb-auth.cc Sun Sep 14 21:50:22 2008
@@ -55,7 +55,7 @@
}
-void gnome_cmd_smb_auth_init (void)
+void gnome_cmd_smb_auth_init ()
{
gnome_vfs_module_callback_set_default (GNOME_VFS_MODULE_CALLBACK_FULL_AUTHENTICATION,
(GnomeVFSModuleCallback) vfs_full_authentication_callback,
Modified: trunk/src/gnome-cmd-smb-path.cc
==============================================================================
--- trunk/src/gnome-cmd-smb-path.cc (original)
+++ trunk/src/gnome-cmd-smb-path.cc Sun Sep 14 21:50:22 2008
@@ -199,7 +199,7 @@
* Public functions
***********************************/
-GtkType gnome_cmd_smb_path_get_type (void)
+GtkType gnome_cmd_smb_path_get_type ()
{
static GtkType type = 0;
Modified: trunk/src/gnome-cmd-style.cc
==============================================================================
--- trunk/src/gnome-cmd-style.cc (original)
+++ trunk/src/gnome-cmd-style.cc Sun Sep 14 21:50:22 2008
@@ -100,7 +100,7 @@
}
-void gnome_cmd_style_create (void)
+void gnome_cmd_style_create ()
{
if (list_style) gtk_style_unref (list_style);
if (sel_list_style) gtk_style_unref (sel_list_style);
Modified: trunk/src/gnome-cmd-xfer-progress-win.cc
==============================================================================
--- trunk/src/gnome-cmd-xfer-progress-win.cc (original)
+++ trunk/src/gnome-cmd-xfer-progress-win.cc Sun Sep 14 21:50:22 2008
@@ -128,7 +128,7 @@
}
-GtkType gnome_cmd_xfer_progress_win_get_type (void)
+GtkType gnome_cmd_xfer_progress_win_get_type ()
{
static GtkType dlg_type = 0;
Modified: trunk/src/imageloader.cc
==============================================================================
--- trunk/src/imageloader.cc (original)
+++ trunk/src/imageloader.cc Sun Sep 14 21:50:22 2008
@@ -89,7 +89,7 @@
/*
* Load application pixmaps
*/
-void IMAGE_init (void)
+void IMAGE_init ()
{
gint i;
@@ -487,7 +487,7 @@
}
-void IMAGE_clear_mime_cache (void)
+void IMAGE_clear_mime_cache ()
{
g_return_if_fail (mime_cache != NULL);
@@ -495,7 +495,7 @@
}
-void IMAGE_free (void)
+void IMAGE_free ()
{
for (int i=0; i<NUM_PIXMAPS; i++)
{
Modified: trunk/src/intviewer/image-render.cc
==============================================================================
--- trunk/src/intviewer/image-render.cc (original)
+++ trunk/src/intviewer/image-render.cc Sun Sep 14 21:50:22 2008
@@ -113,7 +113,7 @@
public functions
(defined in the header file)
*****************************************/
-GtkType image_render_get_type (void)
+GtkType image_render_get_type ()
{
static GtkType type = 0;
if (type == 0)
@@ -135,7 +135,7 @@
}
-GtkWidget *image_render_new (void)
+GtkWidget *image_render_new ()
{
ImageRender *w = (ImageRender *) gtk_type_new (image_render_get_type ());
Modified: trunk/src/intviewer/scroll-box.cc
==============================================================================
--- trunk/src/intviewer/scroll-box.cc (original)
+++ trunk/src/intviewer/scroll-box.cc Sun Sep 14 21:50:22 2008
@@ -55,7 +55,7 @@
public functions
(defined in the header file)
*****************************************/
-GtkType scroll_box_get_type (void)
+GtkType scroll_box_get_type ()
{
static GtkType type = 0;
if (type == 0)
@@ -78,7 +78,7 @@
}
-GtkWidget* scroll_box_new (void)
+GtkWidget* scroll_box_new ()
{
ScrollBox *w = (ScrollBox *) gtk_type_new (scroll_box_get_type ());
Modified: trunk/src/intviewer/search-dlg.cc
==============================================================================
--- trunk/src/intviewer/search-dlg.cc (original)
+++ trunk/src/intviewer/search-dlg.cc Sun Sep 14 21:50:22 2008
@@ -411,7 +411,7 @@
}
-GType gviewer_search_dlg_get_type (void)
+GType gviewer_search_dlg_get_type ()
{
static GType ttt_type = 0;
if (!ttt_type)
Modified: trunk/src/intviewer/search-progress-dlg.cc
==============================================================================
--- trunk/src/intviewer/search-progress-dlg.cc (original)
+++ trunk/src/intviewer/search-progress-dlg.cc Sun Sep 14 21:50:22 2008
@@ -110,7 +110,7 @@
}
-GType gviewer_search_progress_dlg_get_type (void)
+GType gviewer_search_progress_dlg_get_type ()
{
static GType ttt_type = 0;
if (!ttt_type)
Modified: trunk/src/intviewer/text-render.cc
==============================================================================
--- trunk/src/intviewer/text-render.cc (original)
+++ trunk/src/intviewer/text-render.cc Sun Sep 14 21:50:22 2008
@@ -167,7 +167,7 @@
public functions
(defined in the header file)
*****************************************/
-GtkType text_render_get_type (void)
+GtkType text_render_get_type ()
{
static GtkType type = 0;
if (type == 0)
@@ -188,7 +188,7 @@
return type;
}
-GtkWidget* text_render_new (void)
+GtkWidget* text_render_new ()
{
TextRender *w = (TextRender *) gtk_type_new (text_render_get_type ());
Modified: trunk/src/intviewer/viewer-widget.cc
==============================================================================
--- trunk/src/intviewer/viewer-widget.cc (original)
+++ trunk/src/intviewer/viewer-widget.cc Sun Sep 14 21:50:22 2008
@@ -92,7 +92,7 @@
public functions
(defined in the header file)
*****************************************/
-GtkType gviewer_get_type (void)
+GtkType gviewer_get_type ()
{
static GtkType type = 0;
if (type == 0)
@@ -116,7 +116,7 @@
}
-GtkWidget *gviewer_new (void)
+GtkWidget *gviewer_new ()
{
GViewer *w = (GViewer *) gtk_type_new (gviewer_get_type ());
Modified: trunk/src/intviewer/viewer-window.cc
==============================================================================
--- trunk/src/intviewer/viewer-window.cc (original)
+++ trunk/src/intviewer/viewer-window.cc Sun Sep 14 21:50:22 2008
@@ -200,7 +200,7 @@
}
-GtkType gviewer_window_get_type (void)
+GtkType gviewer_window_get_type ()
{
static GtkType type = 0;
if (type == 0)
Modified: trunk/src/ls_colors.cc
==============================================================================
--- trunk/src/ls_colors.cc (original)
+++ trunk/src/ls_colors.cc Sun Sep 14 21:50:22 2008
@@ -192,7 +192,7 @@
}
-void ls_colors_init (void)
+void ls_colors_init ()
{
gchar *s = getenv ("LS_COLORS");
if (!s)
Modified: trunk/src/owner.cc
==============================================================================
--- trunk/src/owner.cc (original)
+++ trunk/src/owner.cc Sun Sep 14 21:50:22 2008
@@ -286,7 +286,7 @@
}
-void OWNER_init (void)
+void OWNER_init ()
{
all_users = NULL;
all_groups = NULL;
@@ -297,7 +297,7 @@
}
-void OWNER_free (void)
+void OWNER_free ()
{
GList *groups;
@@ -322,7 +322,7 @@
}
-user_t *OWNER_get_program_user (void)
+user_t *OWNER_get_program_user ()
{
const char *name;
user_t *user;
@@ -336,13 +336,13 @@
}
-GList *OWNER_get_all_users (void)
+GList *OWNER_get_all_users ()
{
return all_users;
}
-GList *OWNER_get_all_groups (void)
+GList *OWNER_get_all_groups ()
{
return all_groups;
}
Modified: trunk/src/plugin_manager.cc
==============================================================================
--- trunk/src/plugin_manager.cc (original)
+++ trunk/src/plugin_manager.cc Sun Sep 14 21:50:22 2008
@@ -200,7 +200,7 @@
}
-void plugin_manager_init (void)
+void plugin_manager_init ()
{
if (plugins)
{
@@ -240,7 +240,7 @@
}
-void plugin_manager_shutdown (void)
+void plugin_manager_shutdown ()
{
GList *out = NULL;
@@ -255,7 +255,7 @@
}
-GList *plugin_manager_get_all (void)
+GList *plugin_manager_get_all ()
{
return plugins;
}
@@ -395,7 +395,7 @@
}
-void plugin_manager_show (void)
+void plugin_manager_show ()
{
GtkWidget *dialog, *hbox, *bbox, *button;
GtkWidget *avail_list;
Modified: trunk/src/utils.cc
==============================================================================
--- trunk/src/utils.cc (original)
+++ trunk/src/utils.cc Sun Sep 14 21:50:22 2008
@@ -951,13 +951,13 @@
}
-void set_cursor_busy (void)
+void set_cursor_busy ()
{
set_cursor_busy_for_widget (GTK_WIDGET (main_win));
}
-void set_cursor_default (void)
+void set_cursor_default ()
{
set_cursor_default_for_widget (GTK_WIDGET (main_win));
}
@@ -1046,7 +1046,7 @@
}
-void remove_temp_download_dir (void)
+void remove_temp_download_dir ()
{
const gchar *tmp_dir = g_get_tmp_dir ();
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]