summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-11-08 18:03:23 +0100
committerEvan Huus <eapache@gmail.com>2014-11-08 20:55:03 +0000
commit502085662fd22deadd7d405a5bf13edbaff2516c (patch)
tree7d6dd43284f84764596c83d062a20f59c5c22b25
parentd094ca8bd9a558f3cf837a1bc6fc00a25b55b6e8 (diff)
downloadwireshark-502085662fd22deadd7d405a5bf13edbaff2516c.tar.gz
Fix error: parameter 'XX' not found in the function declaration (-Wdocumentation)
Change-Id: I5850b813989bd6ed33263c0fae3aa29e977e82ec Reviewed-on: https://code.wireshark.org/review/5195 Reviewed-by: Evan Huus <eapache@gmail.com>
-rw-r--r--ui/qt/conversation_dialog.h2
-rw-r--r--ui/qt/endpoint_dialog.h2
-rw-r--r--ui/qt/main_window.h4
-rw-r--r--ui/qt/main_window_slots.cpp3
-rw-r--r--ui/qt/traffic_table_dialog.h2
5 files changed, 5 insertions, 8 deletions
diff --git a/ui/qt/conversation_dialog.h b/ui/qt/conversation_dialog.h
index e32e1e3c91..7f62c08127 100644
--- a/ui/qt/conversation_dialog.h
+++ b/ui/qt/conversation_dialog.h
@@ -53,7 +53,7 @@ public:
*
* @param parent Parent widget.
* @param cf Capture file. No statistics will be calculated if this is NULL.
- * @param proto_id If valid, add this protocol and bring it to the front.
+ * @param cli_proto_id If valid, add this protocol and bring it to the front.
* @param filter Display filter to apply.
*/
explicit ConversationDialog(QWidget *parent = 0, capture_file *cf = NULL, int cli_proto_id = -1, const char *filter = NULL);
diff --git a/ui/qt/endpoint_dialog.h b/ui/qt/endpoint_dialog.h
index ed0fd46d9d..d82b439ce6 100644
--- a/ui/qt/endpoint_dialog.h
+++ b/ui/qt/endpoint_dialog.h
@@ -65,7 +65,7 @@ public:
*
* @param parent Parent widget.
* @param cf Capture file. No statistics will be calculated if this is NULL.
- * @param proto_id If valid, add this protocol and bring it to the front.
+ * @param cli_proto_id If valid, add this protocol and bring it to the front.
* @param filter Display filter to apply.
*/
explicit EndpointDialog(QWidget *parent = 0, capture_file *cf = NULL, int cli_proto_id = -1, const char *filter = NULL);
diff --git a/ui/qt/main_window.h b/ui/qt/main_window.h
index 5014dd51c8..cef21d8ecb 100644
--- a/ui/qt/main_window.h
+++ b/ui/qt/main_window.h
@@ -236,8 +236,8 @@ private slots:
void filterAction(QString& filter, FilterAction::Action action, FilterAction::ActionType type);
/** Pass stat cmd arguments to a slot.
- * @param slot Partial slot name, e.g. "StatisticsIOGraph".
- * @param "-z" argument, e.g. "io,stat".
+ * @param menu_path slot Partial slot name, e.g. "StatisticsIOGraph".
+ * @param arg "-z" argument, e.g. "io,stat".
* @param userdata Optional user data.
*/
void openStatCommandDialog(const QString &menu_path, const char *arg, void *userdata);
diff --git a/ui/qt/main_window_slots.cpp b/ui/qt/main_window_slots.cpp
index 3f53efcde6..211b89d4cc 100644
--- a/ui/qt/main_window_slots.cpp
+++ b/ui/qt/main_window_slots.cpp
@@ -767,9 +767,6 @@ void MainWindow::stopCapture() {
/**
* Add the capture filename (with an absolute path) to the "Recent Files" menu.
- *
- * @param cf_name Absolute path to the file.
- * @param first Prepend the filename if true, otherwise append it. Default is false (append).
*/
// XXX - We should probably create a RecentFile class.
void MainWindow::updateRecentFiles() {
diff --git a/ui/qt/traffic_table_dialog.h b/ui/qt/traffic_table_dialog.h
index 601498d8b0..605711cbb8 100644
--- a/ui/qt/traffic_table_dialog.h
+++ b/ui/qt/traffic_table_dialog.h
@@ -99,8 +99,8 @@ public:
*
* @param parent Parent widget.
* @param cf Capture file. No statistics will be calculated if this is NULL.
- * @param proto_id If valid, add this protocol and bring it to the front.
* @param filter Display filter to apply.
+ * @param table_name If valid, add this protocol and bring it to the front.
*/
explicit TrafficTableDialog(QWidget *parent = 0, capture_file *cf = NULL, const char *filter = NULL, const QString &table_name = tr("Unknown"));
~TrafficTableDialog();