summaryrefslogtreecommitdiff
blob: 1c87fc46cd1fa9543f3d087f044658e7b854609a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
--- kcontrol/fonts/fonts.cpp	Fri Jun 28 09:49:12 2002
+++ kcontrol/fonts/fonts.cpp	Fri Jun 28 09:52:21 2002
@@ -6,7 +6,7 @@
 //
 // Ported to kcontrol2 by Geert Jansen.
 
-/* $Id: kdebase-3.0.2-fonts.cpp.patch,v 1.1 2002/06/28 17:16:12 danarmak Exp $ */
+/* $Id: kdebase-3.0.2-fonts.cpp.patch,v 1.1 2002/06/28 17:16:12 danarmak Exp $ */
 
 #include <qlayout.h>
 #include <qlabel.h>
@@ -146,7 +146,7 @@
 
 void FontUseItem::updateLabel()
 {
-  QString fontDesc = _font.family() + ' ' + QString::number(_font.pointSize());
+  QString fontDesc = _font.family() + " " + QString::number(_font.pointSize());
   preview->setText(fontDesc);
   preview->setFont(_font);
 }
@@ -227,15 +227,19 @@
     QLabel * preview = new QLabel(this);
     preview->setFrameStyle(QFrame::StyledPanel | QFrame::Sunken);
     // preview->setMaximumWidth(200);
+    QString name = *it; it++;
+    QString group = *it; it++;
+    QString key = *it; it++;
+    QString file = *it; it++;
 
     FontUseItem * i =
       new FontUseItem(
         this,
         preview,
-        *it++,
-        *it++,
-        *it++,
-        *it++,
+        name,
+        group,
+        key,
+        file,
         *defaultFontIt++,
         *fixedListIt++
       );