[Xfce4-commits] [apps/xfce4-taskmanager] 02/20: Mark unused params, remove unused macro and args (bug 14401)

noreply at xfce.org noreply at xfce.org
Wed May 30 22:00:16 CEST 2018


This is an automated email from the git hooks/post-receive script.

l   a   n   d   r   y       p   u   s   h   e   d       a       c   o   m   m   i   t       t   o       b   r   a   n   c   h       m   a   s   t   e   r   
   in repository apps/xfce4-taskmanager.

commit 66a0d4bfc9e13de705b97bbe395b7b7d42a38276
Author: rim <rozhuk.im at gmail.com>
Date:   Tue May 29 02:23:26 2018 +0300

    Mark unused params, remove unused macro and args (bug 14401)
---
 src/app-manager.c          | 4 ++--
 src/process-monitor.c      | 2 +-
 src/process-tree-model.c   | 8 ++++----
 src/process-tree-view.c    | 6 +++---
 src/process-window.c       | 8 ++++----
 src/settings.c             | 1 -
 src/task-manager-freebsd.c | 4 ++--
 src/task-manager.c         | 2 +-
 src/task-manager.h         | 4 ++++
 9 files changed, 21 insertions(+), 18 deletions(-)

diff --git a/src/app-manager.c b/src/app-manager.c
index 18c1203..5092e00 100644
--- a/src/app-manager.c
+++ b/src/app-manager.c
@@ -151,7 +151,7 @@ apps_lookup_pid (GArray *apps, GPid pid)
 }
 
 static void
-application_opened (WnckScreen *screen, WnckApplication *application, XtmAppManager *manager)
+application_opened (WnckScreen *screen __unused, WnckApplication *application, XtmAppManager *manager)
 {
 	GPid pid = app_get_pid (application);
 	G_DEBUG_FMT ("Application opened %p %d", (void*)application, pid);
@@ -159,7 +159,7 @@ application_opened (WnckScreen *screen, WnckApplication *application, XtmAppMana
 }
 
 static void
-application_closed (WnckScreen *screen, WnckApplication *application, XtmAppManager *manager)
+application_closed (WnckScreen *screen __unused, WnckApplication *application, XtmAppManager *manager)
 {
 	G_DEBUG_FMT ("Application closed %p", (void*)application);
 	apps_remove_application (manager->apps, application);
diff --git a/src/process-monitor.c b/src/process-monitor.c
index 4d48223..1dc0eb3 100644
--- a/src/process-monitor.c
+++ b/src/process-monitor.c
@@ -130,7 +130,7 @@ xtm_process_monitor_draw (GtkWidget *widget, cairo_t *cr)
 }
 #else
 static gboolean
-xtm_process_monitor_expose (GtkWidget *widget, GdkEventExpose *event)
+xtm_process_monitor_expose (GtkWidget *widget, GdkEventExpose *event __unused)
 {
 	XtmProcessMonitor *monitor = XTM_PROCESS_MONITOR (widget);
 	guint minimum_history_length;
diff --git a/src/process-tree-model.c b/src/process-tree-model.c
index 2e139f8..325b945 100644
--- a/src/process-tree-model.c
+++ b/src/process-tree-model.c
@@ -154,7 +154,7 @@ xtm_process_tree_model_finalize (GObject *object)
 }
 
 static void
-xtm_process_tree_model_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec)
+xtm_process_tree_model_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec __unused)
 {
 	XtmProcessTreeModel *treemodel = XTM_PROCESS_TREE_MODEL (object);
 	switch (property_id)
@@ -166,7 +166,7 @@ xtm_process_tree_model_set_property (GObject *object, guint property_id, const G
 }
 
 static void
-xtm_process_tree_model_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec)
+xtm_process_tree_model_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec __unused)
 {
 	XtmProcessTreeModel *treemodel = XTM_PROCESS_TREE_MODEL (object);
 	switch (property_id)
@@ -178,7 +178,7 @@ xtm_process_tree_model_get_property (GObject *object, guint property_id, GValue
 }
 
 static GtkTreeModelFlags
-xtm_process_tree_model_get_flags (GtkTreeModel *model)
+xtm_process_tree_model_get_flags (GtkTreeModel *model __unused)
 {
 	return GTK_TREE_MODEL_ITERS_PERSIST;
 }
@@ -857,7 +857,7 @@ reorder_children (GNode *parent, gpointer data)
 }
 
 static void
-xtm_process_tree_model_rows_reordered (XtmProcessTreeModel *treemodel, GtkTreePath *path, GtkTreeIter *iter, gint *new_order, GtkTreeModel *model)
+xtm_process_tree_model_rows_reordered (XtmProcessTreeModel *treemodel, GtkTreePath *path __unused, GtkTreeIter *iter __unused, gint *new_order, GtkTreeModel *model)
 {
 	gint i, size;
 	GSequence *s_list;
diff --git a/src/process-tree-view.c b/src/process-tree-view.c
index 6458b37..5c0c3a7 100644
--- a/src/process-tree-view.c
+++ b/src/process-tree-view.c
@@ -493,7 +493,7 @@ build_context_menu (XtmProcessTreeView *treeview, GPid pid)
 }
 
 static void
-position_menu (GtkMenu *menu, gint *x, gint *y, gboolean *push_in, XtmProcessTreeView *treeview)
+position_menu (GtkMenu *menu __unused, gint *x, gint *y, gboolean *push_in, XtmProcessTreeView *treeview)
 {
 	gdk_window_get_origin (gtk_tree_view_get_bin_window (GTK_TREE_VIEW (treeview)), x, y);
 	*x += 5;
@@ -664,7 +664,7 @@ visible_func (GtkTreeModel *model, GtkTreeIter *iter, XtmProcessTreeView *treevi
 }
 
 static gboolean
-search_func (GtkTreeModel *model, gint column, const gchar *key, GtkTreeIter *iter, gpointer user_data)
+search_func (GtkTreeModel *model, gint column __unused, const gchar *key, GtkTreeIter *iter, gpointer user_data __unused)
 {
 	gchar *cmdline, *cmdline_lower;
 	gchar *key_lower;
@@ -741,7 +741,7 @@ settings_changed (GObject *object, GParamSpec *pspec, XtmProcessTreeView *treevi
 
 
 static void
-expand_row (GtkTreeModel *model, GtkTreePath *path, GtkTreeIter *iter, XtmProcessTreeView *treeview)
+expand_row (GtkTreeModel *model __unused, GtkTreePath *path, GtkTreeIter *iter __unused, XtmProcessTreeView *treeview)
 {
 	gtk_tree_view_expand_row (GTK_TREE_VIEW (treeview), path, FALSE);
 }
diff --git a/src/process-window.c b/src/process-window.c
index 2ac4a56..3f455a5 100644
--- a/src/process-window.c
+++ b/src/process-window.c
@@ -81,8 +81,8 @@ static void	show_about_dialog				(XtmProcessWindow *window);
 static void
 filter_entry_icon_pressed_cb (GtkEntry *entry,
                               gint position,
-                              GdkEventButton *event,
-                              gpointer data)
+                              GdkEventButton *event __unused,
+                              gpointer data __unused)
 {
 	if (position == GTK_ENTRY_ICON_SECONDARY) {
 		gtk_entry_set_text (entry, "");
@@ -137,7 +137,7 @@ Select_Window (Display *dpy, int screen)
 }
 
 static void
-xwininfo_clicked_cb (GtkButton *button, gpointer user_data) {
+xwininfo_clicked_cb (GtkButton *button __unused, gpointer user_data) {
 	XtmProcessWindow *window = (XtmProcessWindow *) user_data;
 	Window selected_window;
 	Display *dpy;
@@ -553,7 +553,7 @@ xtm_process_window_get_model (XtmProcessWindow *window)
 }
 
 void
-xtm_process_window_set_system_info (XtmProcessWindow *window, guint num_processes, gfloat cpu, gfloat memory, gchar* memory_str, gfloat swap, gchar* swap_str)
+xtm_process_window_set_system_info (XtmProcessWindow *window, guint num_processes, gfloat cpu, gfloat memory, gchar* memory_str, gfloat swap __unused, gchar* swap_str)
 {
 	gchar text[100];
 	gchar value[4];
diff --git a/src/settings.c b/src/settings.c
index 7c2268e..5891b39 100644
--- a/src/settings.c
+++ b/src/settings.c
@@ -70,7 +70,6 @@ struct _XtmSettings
 	/*<private>*/
 	GValue			values[N_PROPS];
 };
-#define GET_PRIV(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), XTM_TYPE_SETTINGS, XtmSettingsPriv))
 G_DEFINE_TYPE (XtmSettings, xtm_settings, G_TYPE_OBJECT)
 
 static void	xtm_settings_get_property			(GObject *object, guint property_id, GValue *value, GParamSpec *pspec);
diff --git a/src/task-manager-freebsd.c b/src/task-manager-freebsd.c
index cd07e35..0438b97 100644
--- a/src/task-manager-freebsd.c
+++ b/src/task-manager-freebsd.c
@@ -118,7 +118,7 @@ get_cpu_usage (gushort *cpu_count, gfloat *cpu_user, gfloat *cpu_system)
 }
 
 static gboolean
-get_task_details (kvm_t *kd, struct kinfo_proc *kp, Task *task)
+get_task_details (struct kinfo_proc *kp, Task *task)
 {
 	struct passwd *pw;
 	char buf[1024], *p;
@@ -250,7 +250,7 @@ get_task_list (GArray *task_list)
 
 	for (i = 0; i < cnt; kp++, i++)
 	{
-		get_task_details (kd, kp, &task);
+		get_task_details (kp, &task);
 		g_array_append_val (task_list, task);
 	}
 
diff --git a/src/task-manager.c b/src/task-manager.c
index 314c00b..015112f 100644
--- a/src/task-manager.c
+++ b/src/task-manager.c
@@ -122,7 +122,7 @@ xtm_task_manager_finalize (GObject *object)
 }
 
 static void
-setting_changed (GObject *object, GParamSpec *pspec, XtmTaskManager *manager)
+setting_changed (GObject *object, GParamSpec *pspec __unused, XtmTaskManager *manager __unused)
 {
 	g_object_get (object, "more-precision", &more_precision, NULL);
 	g_object_get (object, "full-command-line", &full_cmdline, NULL);
diff --git a/src/task-manager.h b/src/task-manager.h
index 24a54b4..b6d5052 100644
--- a/src/task-manager.h
+++ b/src/task-manager.h
@@ -99,6 +99,10 @@ gint		task_pid_compare_fn	(gconstpointer a, gconstpointer b);
 gboolean	set_priority_to_pid	(GPid pid, gint priority);
 
 
+#ifndef __unused
+#	define __unused				__attribute__((__unused__))
+#endif
+
 #if DEBUG
 #	define G_DEBUG_FMT(fmt, args...)	g_debug((fmt), ##args)
 #else

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list