summaryrefslogtreecommitdiff
path: root/library/qpeapplication.cpp
authorkergoth <kergoth>2003-03-26 21:58:02 (UTC)
committer kergoth <kergoth>2003-03-26 21:58:02 (UTC)
commit01e8da96a688b8a84133b7c3e5a89c295a71d9fd (patch) (side-by-side diff)
tree84ea398894de7dbf077273c6bbad3b9667d4fade /library/qpeapplication.cpp
parent17ac2947f6485a31db216c431fa667192f1fc8a0 (diff)
downloadopie-01e8da96a688b8a84133b7c3e5a89c295a71d9fd.zip
opie-01e8da96a688b8a84133b7c3e5a89c295a71d9fd.tar.gz
opie-01e8da96a688b8a84133b7c3e5a89c295a71d9fd.tar.bz2
Instead of writing the entire QWS_DISPLAY field in setDefaultRotation, write out a single numeric rotation value field, which is the degrees to rotate.
Diffstat (limited to 'library/qpeapplication.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--library/qpeapplication.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp
index 7463074..ac7b779 100644
--- a/library/qpeapplication.cpp
+++ b/library/qpeapplication.cpp
@@ -943,7 +943,7 @@ void QPEApplication::setDefaultRotation( int r )
setenv( "QWS_DISPLAY", QString( "Transformed:Rot%1:0" ).arg( r ).latin1(), 1 );
Config config("qpe");
config.setGroup( "Rotation" );
- config.writeEntry( "Screen", getenv("QWS_DISPLAY") );
+ config.writeEntry( "Rot", r );
}
else {
#ifndef QT_NO_COP