Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Hacker <dd0t@users.sourceforge.net>2014-11-10 01:21:37 +0300
committerStefan Hacker <dd0t@users.sourceforge.net>2014-11-10 01:21:37 +0300
commit78d71984b540858b1210898ffc852da83e8c5583 (patch)
treef27bb439dc6f2f40484f2f91278a72bba651ffe1
parentb78f34d0ad161a4a0562234d9b5893d6de97be03 (diff)
Fix typo in AudioEchoWidget regression fix
-rw-r--r--src/mumble/AudioStats.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mumble/AudioStats.cpp b/src/mumble/AudioStats.cpp
index 6b55d469e..0a3df3d79 100644
--- a/src/mumble/AudioStats.cpp
+++ b/src/mumble/AudioStats.cpp
@@ -220,7 +220,7 @@ void AudioEchoWidget::paintEvent(QPaintEvent *) {
poly << QPointF(static_cast<float>(i) * xscale, 0.5f + static_cast<float>(w[i]) * yscale);
}
- paint.setPen(QPen(QBrush(QColor::fromRgbF(1.0f, 0.0f, 1.0f), 0)));
+ paint.setPen(QPen(QBrush(QColor::fromRgbF(1.0f, 0.0f, 1.0f)), 0));
paint.drawPolyline(poly);
}