From da8050fe68a443773447ee176793a30df256ea9b Mon Sep 17 00:00:00 2001 From: sandman Date: Mon, 25 Nov 2002 00:15:06 +0000 Subject: Too dumb to read a man page .. QApplication::setFont is static .. just wondering why this ever worked .. --- 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 @@ -5,12 +5,13 @@ #include #include -//#include +//#include +//#include -class QStyle; +//class QStyle; class QApplication; class QFont; -class QWSDecoration; +//class QWSDecoration; #include #include @@ -20,7 +21,7 @@ class QWSDecoration; typedef void ( *qapp_setstyle_t ) ( QStyle * ); typedef void ( *qapp_setdeco_t ) ( QApplication *, QWSDecoration * ); -typedef void ( *qapp_setfont_t ) ( QApplication *, const QFont &, bool, const char * ); +typedef void ( *qapp_setfont_t ) ( const QFont &, bool, const char * ); static bool *opie_block_style_p = 0; @@ -55,7 +56,7 @@ extern void setStyle__12QApplicationP6QStyle ( QStyle *style ) ( *qsetstyle ) ( style ); } -extern void setFont__12QApplicationRC5QFontbPCc ( QApplication *app, const QFont &fnt, bool informWidgets, const char * className ) +extern void setFont__12QApplicationRC5QFontbPCc ( const QFont &fnt, bool informWidgets, const char * className ) { static qapp_setfont_t qsetfont = 0; @@ -66,7 +67,7 @@ extern void setFont__12QApplicationRC5QFontbPCc ( QApplication *app, const QFont opie_block_style_p = (bool *) resolve_symbol ( "opie_block_style" ); if ( qsetfont && !( opie_block_style_p && *opie_block_style_p )) - ( *qsetfont ) ( app, fnt, informWidgets, className ); + ( *qsetfont ) ( fnt, informWidgets, className ); } -- cgit v0.9.0.2