summaryrefslogtreecommitdiff
path: root/ui/qt/sctp_graph_byte_dialog.cpp
diff options
context:
space:
mode:
authorMichael Tüxen <tuexen@fh-muenster.de>2013-12-13 13:00:29 +0000
committerMichael Tüxen <tuexen@fh-muenster.de>2013-12-13 13:00:29 +0000
commit9a5d23c83ce7c92f5bf692159080d0ec149164d7 (patch)
treedcd7ef4f55a3839135d9c18e3048b44b407b91c3 /ui/qt/sctp_graph_byte_dialog.cpp
parent0c5eccc2771805f6ccc186369dc7b1c2785f6916 (diff)
downloadwireshark-9a5d23c83ce7c92f5bf692159080d0ec149164d7.tar.gz
Try to silence warnings and add a comment for Irene to
fix these appropriately next week. svn path=/trunk/; revision=54041
Diffstat (limited to 'ui/qt/sctp_graph_byte_dialog.cpp')
-rw-r--r--ui/qt/sctp_graph_byte_dialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt/sctp_graph_byte_dialog.cpp b/ui/qt/sctp_graph_byte_dialog.cpp
index 4a15928bad..8619b39b95 100644
--- a/ui/qt/sctp_graph_byte_dialog.cpp
+++ b/ui/qt/sctp_graph_byte_dialog.cpp
@@ -143,7 +143,7 @@ void SCTPGraphByteDialog::on_pushButton_4_clicked()
void SCTPGraphByteDialog::graphClicked(QCPAbstractPlottable* plottable, QMouseEvent* event)
{
if (plottable->name().contains("Bytes", Qt::CaseInsensitive)) {
- double bytes = round(ui->sctpPlot->yAxis->pixelToCoord(event->pos().y()));
+ double bytes = (ui->sctpPlot->yAxis->pixelToCoord(event->pos().y())); // FIXME IRENE
int i;
for (i = 0; i < yb.size(); i++) {
if (bytes <= yb.value(i)) {