aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-03-19 16:55:49 +0100
committerMichael Mann <mmann78@netscape.net>2017-03-19 16:50:08 +0000
commit4db2d40ea9368166140767b1c29609c26611b5de (patch)
treea200ead7398cc4e325e291a7c1eb80e5e66f39c4 /ui
parent9a8d90698b936be3ef941a37c0c053b67b086a7d (diff)
response_time_delay_dialog (Qt): fix typo reponse -> response
Change-Id: Ib29cca71a4ffe4e44f341d9de5e3da603c7b3f15 Reviewed-on: https://code.wireshark.org/review/20627 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'ui')
-rw-r--r--ui/qt/response_time_delay_dialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/qt/response_time_delay_dialog.cpp b/ui/qt/response_time_delay_dialog.cpp
index bf14862858..4a381fc74f 100644
--- a/ui/qt/response_time_delay_dialog.cpp
+++ b/ui/qt/response_time_delay_dialog.cpp
@@ -74,7 +74,7 @@ enum {
col_min_frame_,
col_max_frame_,
col_open_requests,
- col_discarded_reponses_,
+ col_discarded_responses_,
col_repeated_requests_,
col_repeated_responses_
};
@@ -103,7 +103,7 @@ public:
setText(col_min_frame_, QString::number(timestat_->rtd->min_num));
setText(col_max_frame_, QString::number(timestat_->rtd->max_num));
setText(col_open_requests, QString::number(timestat_->open_req_num));
- setText(col_discarded_reponses_, QString::number(timestat_->disc_rsp_num));
+ setText(col_discarded_responses_, QString::number(timestat_->disc_rsp_num));
setText(col_repeated_requests_, QString::number(timestat_->req_dup_num));
setText(col_repeated_responses_, QString::number(timestat_->rsp_dup_num));
@@ -133,7 +133,7 @@ public:
return timestat_->rtd->max_num < other_row->timestat_->rtd->max_num;
case col_open_requests:
return timestat_->open_req_num < other_row->timestat_->open_req_num;
- case col_discarded_reponses_:
+ case col_discarded_responses_:
return timestat_->disc_rsp_num < other_row->timestat_->disc_rsp_num;
case col_repeated_requests_:
return timestat_->req_dup_num < other_row->timestat_->req_dup_num;