-rw-r--r-- | core/launcher/libpreload/preload.cpp | 13 |
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 @@ -4,14 +4,15 @@ //#define protected public #include <qwsdecoration_qws.h> #include <qcommonstyle.h> -//#include <qpe/qpeapplication.h> +//#include <qapplication.h> +//#include <qfont.h> -class QStyle; +//class QStyle; class QApplication; class QFont; -class QWSDecoration; +//class QWSDecoration; #include <dlfcn.h> #include <unistd.h> #include <stdio.h> @@ -19,9 +20,9 @@ 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; @@ -54,9 +55,9 @@ extern void setStyle__12QApplicationP6QStyle ( QStyle *style ) else ( *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; if ( !qsetfont ) @@ -65,9 +66,9 @@ extern void setFont__12QApplicationRC5QFontbPCc ( QApplication *app, const QFont if ( !opie_block_style_p ) 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 ); } extern void qwsSetDecoration__12QApplicationP13QWSDecoration ( QApplication *app, QWSDecoration *deco ) |