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