From a74c65d6469a2f1ce0d1927ffbd73be90bf754c5 Mon Sep 17 00:00:00 2001 From: RJ Ryan Date: Tue, 18 Nov 2014 00:11:37 -0500 Subject: Code fascism. * Fix compiler warnings in non-3rd-party code. * Add some missing const-references. * Eliminate cases of "if(" "( ... )" and "for(". --- src/widget/wlabel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/widget/wlabel.cpp') 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 -- cgit v1.2.3