aboutsummaryrefslogtreecommitdiff
path: root/deskutils/kdepim44
diff options
context:
space:
mode:
Diffstat (limited to 'deskutils/kdepim44')
-rw-r--r--deskutils/kdepim44/files/patch-knote.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/deskutils/kdepim44/files/patch-knote.cpp b/deskutils/kdepim44/files/patch-knote.cpp
new file mode 100644
index 000000000000..eed60bebbf01
--- /dev/null
+++ b/deskutils/kdepim44/files/patch-knote.cpp
@@ -0,0 +1,15 @@
+--- knotes/knote.cpp 2002/06/17 20:23:11 1.61
++++ knotes/knote.cpp 2002/07/04 08:51:19 1.62
+@@ -497,7 +497,11 @@
+
+ QTextDocument* textDoc = new QTextDocument( 0 );
+ textDoc->setFormatter( new QTextFormatterBreakWords );
+- textDoc->setDefaultFont( font ); // only needed for the pointsize
++#if QT_VERSION > 304
++ textDoc->setDefaultFormat( font, Qt::black ); // only needed for the pointsize
++#else
++ textDoc->setDefaultFont( font ); // only needed for the pointsize
++#endif
+ textDoc->setUnderlineLinks( true );
+ textDoc->setStyleSheet( m_editor->styleSheet() );
+ textDoc->setMimeSourceFactory( m_editor->mimeSourceFactory() );