blob: c38c25a3592da317450657acdc240560a1f1d554 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
Patch taken from OPIE project
Index: ofontselector.cpp
===================================================================
RCS file: /cvs/opie/libopie2/opieui/ofontselector.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- kdepim/microkde/ofontselector.cpp.orig 2005-03-08 14:13:14 +0100
+++ kdepim/microkde/ofontselector.cpp 2005-03-08 14:14:48 +0100
@@ -137,7 +137,7 @@
this, SLOT( fontSizeClicked( int ) ) );
gridLayout->addWidget( d-> m_font_size_list, 3, 1 );
- d-> m_pointbug = ( qt_version ( ) <= 233 );
+ d->m_pointbug = ( qt_version() == 232 || qt_version() == 233 ); // SharpROM uses 2.3.2
if ( withpreview ) {
d-> m_preview = new QMultiLineEdit ( this, "Preview" );
|