summaryrefslogtreecommitdiffstats
path: root/src/widget/wlabel.cpp
diff options
context:
space:
mode:
authorRJ Ryan <rryan@mixxx.org>2014-11-18 00:11:37 -0500
committerRJ Ryan <rryan@mixxx.org>2014-11-18 01:29:09 -0500
commita74c65d6469a2f1ce0d1927ffbd73be90bf754c5 (patch)
tree4381e657348dd5bba44d2e2b40c0635ed39b7f3c /src/widget/wlabel.cpp
parentc21f0c6559e5c19ed7a9acd301e2100823a43e00 (diff)
Code fascism.
* Fix compiler warnings in non-3rd-party code. * Add some missing const-references. * Eliminate cases of "if(" "( ... )" and "for(".
Diffstat (limited to 'src/widget/wlabel.cpp')
-rw-r--r--src/widget/wlabel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widget/wlabel.cpp b/src/widget/wlabel.cpp
index 838a749cd8..9dc755457c 100644
--- a/src/widget/wlabel.cpp
+++ b/src/widget/wlabel.cpp
@@ -50,7 +50,7 @@ void WLabel::setup(QDomNode node, const SkinContext& context) {
// Font size
if (context.hasNode(node, "FontSize")) {
int fontsize = context.selectString(node, "FontSize").toInt();
- setFont( QFont("Helvetica",fontsize,QFont::Normal) );
+ setFont(QFont("Helvetica", fontsize, QFont::Normal));
}
// Alignment