From 0103ff217ddb440206e5821295bcc79e02916941 Mon Sep 17 00:00:00 2001 From: arcan1s Date: Thu, 4 Sep 2014 21:17:37 +0400 Subject: [PATCH] fix building --- fontdialog.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fontdialog.cpp b/fontdialog.cpp index 0d372a9..55f0185 100644 --- a/fontdialog.cpp +++ b/fontdialog.cpp @@ -104,13 +104,13 @@ int CFont::qFont2html(const int weight) int CFont::htmlWeight() { - return qFont2html(weight()); + return CFont::qFont2html(weight()); } void CFont::setHtmlWeight(const int htmlWeight) { - setWeight(html2QFont(htmlWeight)); + setWeight(CFont::html2QFont(htmlWeight)); }