aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2015-07-16 22:03:29 +0200
committerPascal Quantin <pascal.quantin@gmail.com>2015-07-16 20:04:38 +0000
commitd23ff4f5f8f48ed1b8d3c4d902ef508cce48c454 (patch)
tree9e7e8c92078e81879315508611bd2e125418f2b2 /ui
parent0b11d5dc75f3d8fb4de1c5d4274732c0780e20e3 (diff)
Qt: remove unused parameters
Change-Id: I45fcf87f99dc15eb49343119fa134fb5698b15cf Reviewed-on: https://code.wireshark.org/review/9664 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
Diffstat (limited to 'ui')
-rw-r--r--ui/qt/resolved_addresses_dialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/qt/resolved_addresses_dialog.cpp b/ui/qt/resolved_addresses_dialog.cpp
index 4ea9c1df67..7fe455f570 100644
--- a/ui/qt/resolved_addresses_dialog.cpp
+++ b/ui/qt/resolved_addresses_dialog.cpp
@@ -44,7 +44,7 @@
extern "C" {
static void
-ipv4_hash_table_resolved_to_qstringlist(gpointer key _U_, gpointer value, gpointer sl_ptr)
+ipv4_hash_table_resolved_to_qstringlist(gpointer, gpointer value, gpointer sl_ptr)
{
QStringList *string_list = (QStringList *) sl_ptr;
hashipv4_t *ipv4_hash_table_entry = (hashipv4_t *) value;
@@ -58,7 +58,7 @@ ipv4_hash_table_resolved_to_qstringlist(gpointer key _U_, gpointer value, gpoint
}
static void
-ipv6_hash_table_resolved_to_qstringlist(gpointer key _U_, gpointer value, gpointer sl_ptr)
+ipv6_hash_table_resolved_to_qstringlist(gpointer, gpointer value, gpointer sl_ptr)
{
QStringList *string_list = (QStringList *) sl_ptr;
hashipv6_t *ipv6_hash_table_entry = (hashipv6_t *) value;
@@ -119,7 +119,7 @@ serv_port_hash_to_qstringlist(gpointer key, gpointer value, gpointer sl_ptr)
}
static void
-eth_hash_to_qstringlist(gpointer key _U_, gpointer value, gpointer sl_ptr)
+eth_hash_to_qstringlist(gpointer, gpointer value, gpointer sl_ptr)
{
QStringList *string_list = (QStringList *) sl_ptr;
hashether_t* tp = (hashether_t*)value;