summaryrefslogtreecommitdiff
path: root/core/launcher/main.cpp
authorkergoth <kergoth>2003-01-26 03:28:56 (UTC)
committer kergoth <kergoth>2003-01-26 03:28:56 (UTC)
commit7efc361470c6c91eb06ae7e800bb64aa645f6f73 (patch) (unidiff)
treeafe4a0d664c4e59ae43345f2a6c3431da9dcb809 /core/launcher/main.cpp
parent7d889b3840f2d07b2eb2d9ebb3df17d0a4ea686d (diff)
downloadopie-7efc361470c6c91eb06ae7e800bb64aa645f6f73.zip
opie-7efc361470c6c91eb06ae7e800bb64aa645f6f73.tar.gz
opie-7efc361470c6c91eb06ae7e800bb64aa645f6f73.tar.bz2
mkipks
Diffstat (limited to 'core/launcher/main.cpp') (more/less context) (show whitespace changes)
-rw-r--r--core/launcher/main.cpp20
1 files changed, 18 insertions, 2 deletions
diff --git a/core/launcher/main.cpp b/core/launcher/main.cpp
index 49b41d6..1e5eb46 100644
--- a/core/launcher/main.cpp
+++ b/core/launcher/main.cpp
@@ -68,2 +68,3 @@ void initEnvironment()
68 setenv( "LANG", lang, 1 ); 68 setenv( "LANG", lang, 1 );
69
69} 70}
@@ -73,2 +74,4 @@ int initApplication( int argc, char ** argv )
73{ 74{
75 struct ODevice *odev = ODevice::inst();
76
74 initEnvironment(); 77 initEnvironment();
@@ -83,3 +86,16 @@ int initApplication( int argc, char ** argv )
83 86
84 ODevice::inst ( )-> setSoftSuspend ( true ); 87 int rot;
88 switch ( odev-> rotation( ) ) {
89 case None:
90 rot = 0;
91 case Rot90:
92 rot = 90;
93 case Rot180:
94 rot = 180;
95 case Rot270:
96 rot = 270;
97 }
98 a.setDefaultRotation( rot );
99
100 odev-> setSoftSuspend ( true );
85 101
@@ -126,3 +142,3 @@ int initApplication( int argc, char ** argv )
126 142
127 ODevice::inst ( )-> setSoftSuspend ( false ); 143 odev-> setSoftSuspend ( false );
128 144