From 10dfcbdbca10e68cf2f892ee1875382d95915f2e Mon Sep 17 00:00:00 2001 From: will Date: Wed, 31 Jul 2002 05:12:46 +0000 Subject: In the words of Stephan Kulow : "That's the penalty of using private interfaces". Fix build with Qt 3.0.5 by using a patch committed to KDE CVS. It was backported to KDE_3_0_BRANCH so this patch will be removed with the upgrade to KDE 3.0.3 (well, if it happens long enough before KDE 3.1). --- deskutils/kdepim4/files/patch-knote.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 deskutils/kdepim4/files/patch-knote.cpp (limited to 'deskutils/kdepim4') diff --git a/deskutils/kdepim4/files/patch-knote.cpp b/deskutils/kdepim4/files/patch-knote.cpp new file mode 100644 index 000000000000..eed60bebbf01 --- /dev/null +++ b/deskutils/kdepim4/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() ); -- cgit