summaryrefslogtreecommitdiff
path: root/core/launcher
authorsandman <sandman>2002-11-25 00:15:06 (UTC)
committer sandman <sandman>2002-11-25 00:15:06 (UTC)
commitda8050fe68a443773447ee176793a30df256ea9b (patch) (unidiff)
tree702ca1fb5aa51d659b77493b15a352b18c727934 /core/launcher
parent8383c1e7cb0aac098165c87fd4b969150010bfa7 (diff)
downloadopie-da8050fe68a443773447ee176793a30df256ea9b.zip
opie-da8050fe68a443773447ee176793a30df256ea9b.tar.gz
opie-da8050fe68a443773447ee176793a30df256ea9b.tar.bz2
Too dumb to read a man page .. QApplication::setFont is static .. just
wondering why this ever worked ..
Diffstat (limited to 'core/launcher') (more/less context) (show whitespace changes)
-rw-r--r--core/launcher/libpreload/preload.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/core/launcher/libpreload/preload.cpp b/core/launcher/libpreload/preload.cpp
index a94ec65..4505428 100644
--- a/core/launcher/libpreload/preload.cpp
+++ b/core/launcher/libpreload/preload.cpp
@@ -7,8 +7,9 @@
7#include <qcommonstyle.h> 7#include <qcommonstyle.h>
8//#include <qpe/qpeapplication.h> 8//#include <qapplication.h>
9//#include <qfont.h>
9 10
10class QStyle; 11//class QStyle;
11class QApplication; 12class QApplication;
12class QFont; 13class QFont;
13class QWSDecoration; 14//class QWSDecoration;
14 15
@@ -22,3 +23,3 @@ typedef void ( *qapp_setstyle_t ) ( QStyle * );
22typedef void ( *qapp_setdeco_t ) ( QApplication *, QWSDecoration * ); 23typedef void ( *qapp_setdeco_t ) ( QApplication *, QWSDecoration * );
23typedef void ( *qapp_setfont_t ) ( QApplication *, const QFont &, bool, const char * ); 24typedef void ( *qapp_setfont_t ) ( const QFont &, bool, const char * );
24 25
@@ -57,3 +58,3 @@ extern void setStyle__12QApplicationP6QStyle ( QStyle *style )
57 58
58extern void setFont__12QApplicationRC5QFontbPCc ( QApplication *app, const QFont &fnt, bool informWidgets, const char * className ) 59extern void setFont__12QApplicationRC5QFontbPCc ( const QFont &fnt, bool informWidgets, const char * className )
59{ 60{
@@ -68,3 +69,3 @@ extern void setFont__12QApplicationRC5QFontbPCc ( QApplication *app, const QFont
68 if ( qsetfont && !( opie_block_style_p && *opie_block_style_p )) 69 if ( qsetfont && !( opie_block_style_p && *opie_block_style_p ))
69 ( *qsetfont ) ( app, fnt, informWidgets, className ); 70 ( *qsetfont ) ( fnt, informWidgets, className );
70} 71}