author | eilers <eilers> | 2003-09-01 12:22:09 (UTC) |
---|---|---|
committer | eilers <eilers> | 2003-09-01 12:22:09 (UTC) |
commit | 68a308e1166ec4462dea188c3141c7f884f5d6b5 (patch) (unidiff) | |
tree | c999c2b0af1f5f2339582c9609d1cb9168d08bcf | |
parent | 45a479040238764f97eed267c74aed6cf27eece8 (diff) | |
download | opie-68a308e1166ec4462dea188c3141c7f884f5d6b5.zip opie-68a308e1166ec4462dea188c3141c7f884f5d6b5.tar.gz opie-68a308e1166ec4462dea188c3141c7f884f5d6b5.tar.bz2 |
Fix to compile..
-rw-r--r-- | library/qpeapplication.cpp | 4 | ||||
-rw-r--r-- | library/qpeapplication.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index 71ec5b3..bf353d4 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp | |||
@@ -1072,9 +1072,9 @@ void QPEApplication::setDefaultRotation( int r ) | |||
1072 | #include <qpixmapcache.h> | 1072 | #include <qpixmapcache.h> |
1073 | 1073 | ||
1074 | extern void qws_clearLoadedFonts(); | 1074 | extern void qws_clearLoadedFonts(); |
1075 | 1075 | ||
1076 | inline void QPEApplication::setCurrentMode( int x, int y, int depth ) | 1076 | void QPEApplication::setCurrentMode( int x, int y, int depth ) |
1077 | { | 1077 | { |
1078 | // Reset the caches | 1078 | // Reset the caches |
1079 | qws_clearLoadedFonts(); | 1079 | qws_clearLoadedFonts(); |
1080 | QPixmapCache::clear(); | 1080 | QPixmapCache::clear(); |
@@ -1091,9 +1091,9 @@ inline void QPEApplication::setCurrentMode( int x, int y, int depth ) | |||
1091 | QCopEnvelope env( "QPE/System", "reset()" ); | 1091 | QCopEnvelope env( "QPE/System", "reset()" ); |
1092 | } | 1092 | } |
1093 | } | 1093 | } |
1094 | 1094 | ||
1095 | inline void QPEApplication::reset() { | 1095 | void QPEApplication::reset() { |
1096 | // Reconnect to the screen | 1096 | // Reconnect to the screen |
1097 | qt_screen->disconnect(); | 1097 | qt_screen->disconnect(); |
1098 | qt_screen->connect( QString::null ); | 1098 | qt_screen->connect( QString::null ); |
1099 | 1099 | ||
diff --git a/library/qpeapplication.h b/library/qpeapplication.h index 42810e8..69e0058 100644 --- a/library/qpeapplication.h +++ b/library/qpeapplication.h | |||
@@ -115,9 +115,9 @@ private slots: | |||
115 | void removeSenderFromStylusDict(); | 115 | void removeSenderFromStylusDict(); |
116 | void hideOrQuit(); | 116 | void hideOrQuit(); |
117 | 117 | ||
118 | private: | 118 | private: |
119 | inline QWidget *nextWidget( QWidgetList*, QWidget* ); | 119 | QWidget *nextWidget( QWidgetList*, QWidget* ); |
120 | 120 | ||
121 | protected: | 121 | protected: |
122 | bool qwsEventFilter( QWSEvent * ); | 122 | bool qwsEventFilter( QWSEvent * ); |
123 | void internalSetStyle( const QString &style ); | 123 | void internalSetStyle( const QString &style ); |