-rw-r--r-- | library/qpeapplication.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/library/qpeapplication.h b/library/qpeapplication.h index 770ea23..343e0b9 100644 --- a/library/qpeapplication.h +++ b/library/qpeapplication.h | |||
@@ -112,8 +112,11 @@ private slots: | |||
112 | void pidMessage( const QCString &msg, const QByteArray &data ); | 112 | void pidMessage( const QCString &msg, const QByteArray &data ); |
113 | void removeSenderFromStylusDict(); | 113 | void removeSenderFromStylusDict(); |
114 | void hideOrQuit(); | 114 | void hideOrQuit(); |
115 | 115 | ||
116 | private: | ||
117 | inline QWidget *nextWidget( QWidgetList*, QWidget* ); | ||
118 | |||
116 | protected: | 119 | protected: |
117 | bool qwsEventFilter( QWSEvent * ); | 120 | bool qwsEventFilter( QWSEvent * ); |
118 | void internalSetStyle( const QString &style ); | 121 | void internalSetStyle( const QString &style ); |
119 | void prepareForTermination(bool willrestart); | 122 | void prepareForTermination(bool willrestart); |
@@ -190,15 +193,15 @@ inline Transformation DegToTrans ( int d ) | |||
190 | inline void QPEApplication::setCurrentRotation( int r ) | 193 | inline void QPEApplication::setCurrentRotation( int r ) |
191 | { | 194 | { |
192 | // setTransformation has been introduced in Qt/Embedded 2.3.4 snapshots | 195 | // setTransformation has been introduced in Qt/Embedded 2.3.4 snapshots |
193 | // for compatibility with the SharpROM use fallback to setDefaultTransformation() | 196 | // for compatibility with the SharpROM use fallback to setDefaultTransformation() |
194 | #if QT_VERSION > 233 | 197 | #if QT_VERSION > 233 |
195 | Transformation e = DegToTrans( r ); | 198 | Transformation e = DegToTrans( r ); |
196 | setenv( "QWS_DISPLAY", QString( "Transformed:Rot%1:0" ).arg( r ).latin1(), 1 ); | 199 | ::setenv( "QWS_DISPLAY", QString( "Transformed:Rot%1:0" ).arg( r ).latin1(), 1 ); |
197 | qApp->desktop()->qwsDisplay()->setTransformation( e ); | 200 | qApp->desktop()->qwsDisplay()->setTransformation( e ); |
198 | #else | 201 | #else |
199 | setDefaultRotation( r ); | 202 | setDefaultRotation( r ); |
200 | #endif | 203 | #endif |
201 | } | 204 | } |
202 | 205 | ||
203 | 206 | ||
204 | #endif | 207 | #endif |