-rw-r--r-- | library/qpeapplication.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index f5bf0c5..7463074 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp @@ -1066,13 +1066,11 @@ void QPEApplication::systemMessage( const QCString& msg, const QByteArray& data setDefaultRotation( r ); } } else if ( msg == "setCurrentRotation(int)" ) { - if ( type() == GuiServer ) { - int r; - stream >> r; - setCurrentRotation( r ); - } + int r; + stream >> r; + setCurrentRotation( r ); } else if ( msg == "shutdown()" ) { if ( type() == GuiServer ) shutdown(); |