summaryrefslogtreecommitdiff
authorkergoth <kergoth>2003-03-26 23:55:38 (UTC)
committer kergoth <kergoth>2003-03-26 23:55:38 (UTC)
commitd57d83e0cda09c34dc92dfedb841a979b767e504 (patch) (unidiff)
tree4eaf57168e956228a3039ce50eca6f7595ade7f7
parent9d291e88efa5b33bbf34112cdee8b0e516150dd6 (diff)
downloadopie-d57d83e0cda09c34dc92dfedb841a979b767e504.zip
opie-d57d83e0cda09c34dc92dfedb841a979b767e504.tar.gz
opie-d57d83e0cda09c34dc92dfedb841a979b767e504.tar.bz2
BUGFIX: as pointed out by robert, dont fsck with QWS_DISPLAY if it was already set.
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/main.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/launcher/main.cpp b/core/launcher/main.cpp
index fa4df3c..a6e2a9d 100644
--- a/core/launcher/main.cpp
+++ b/core/launcher/main.cpp
@@ -58,57 +58,57 @@ void initEnvironment()
58 58
59 // if not timezone set, pick New York 59 // if not timezone set, pick New York
60 if (tz.isNull()) 60 if (tz.isNull())
61 tz = "America/New_York"; 61 tz = "America/New_York";
62 62
63 setenv( "TZ", tz, 1 ); 63 setenv( "TZ", tz, 1 );
64 config.writeEntry( "Timezone", tz); 64 config.writeEntry( "Timezone", tz);
65 65
66 config.setGroup( "Language" ); 66 config.setGroup( "Language" );
67 QString lang = config.readEntry( "Language", getenv("LANG") ); 67 QString lang = config.readEntry( "Language", getenv("LANG") );
68 if ( !lang.isNull() ) 68 if ( !lang.isNull() )
69 setenv( "LANG", lang, 1 ); 69 setenv( "LANG", lang, 1 );
70 70
71#if !defined(QT_QWS_CASSIOPEIA) && !defined(QT_QWS_IPAQ) && !defined(QT_QWS_SL5XXX) 71#if !defined(QT_QWS_CASSIOPEIA) && !defined(QT_QWS_IPAQ) && !defined(QT_QWS_SL5XXX)
72 setenv( "QWS_SIZE", "240x320", 0 ); 72 setenv( "QWS_SIZE", "240x320", 0 );
73#endif 73#endif
74 74
75 /* 75 /*
76 * Rotation: 76 * Rotation:
77 * 1. use env var if set 77 * 1. use env var if set
78 * 2. use saved default if set 78 * 2. use saved default if set
79 * 3. use physical orientation (currently fails due to ODevice 79 * 3. use physical orientation (currently fails due to ODevice
80 * using a QPixmap and therefore requiring a QApplication) 80 * using a QPixmap and therefore requiring a QApplication)
81 */ 81 */
82 if ( ( rot = QPEApplication::defaultRotation ( ) ) == 0 ) { 82 if ( getenv("QWS_DISPLAY") == NULL ) {
83 Config config("qpe"); 83 Config config("qpe");
84 config.setGroup( "Rotation" ); 84 config.setGroup( "Rotation" );
85 if ( ( rot = config.readNumEntry( "Rot", -1 ) ) == -1 ) 85 if ( ( rot = config.readNumEntry( "Rot", -1 ) ) == -1 )
86 rot = ODevice::inst ( )-> rotation ( ) * 90; 86 rot = ODevice::inst ( )-> rotation ( ) * 90;
87 }
88 87
89 setenv("QWS_DISPLAY", QString("Transformed:Rot%1:0").arg(rot), 1); 88 setenv("QWS_DISPLAY", QString("Transformed:Rot%1:0").arg(rot), 1);
90 QPEApplication::defaultRotation ( ); /* to ensure deforient matches reality */ 89 QPEApplication::defaultRotation ( ); /* to ensure deforient matches reality */
90 }
91} 91}
92 92
93 93
94int initApplication( int argc, char ** argv ) 94int initApplication( int argc, char ** argv )
95{ 95{
96 initEnvironment(); 96 initEnvironment();
97 97
98 //Don't flicker at startup: 98 //Don't flicker at startup:
99 QWSServer::setDesktopBackground( QImage() ); 99 QWSServer::setDesktopBackground( QImage() );
100 100
101 DesktopApplication a( argc, argv, QApplication::GuiServer ); 101 DesktopApplication a( argc, argv, QApplication::GuiServer );
102 102
103 ODevice::inst ( )-> setSoftSuspend ( true ); 103 ODevice::inst ( )-> setSoftSuspend ( true );
104 104
105 { // init backlight 105 { // init backlight
106 QCopEnvelope e("QPE/System", "setBacklight(int)" ); 106 QCopEnvelope e("QPE/System", "setBacklight(int)" );
107 e << -3; // Forced on 107 e << -3; // Forced on
108 } 108 }
109 109
110 AlarmServer::initialize(); 110 AlarmServer::initialize();
111 111
112 Desktop *d = new Desktop(); 112 Desktop *d = new Desktop();
113 113
114 QObject::connect( &a, SIGNAL(power()), d, SLOT(togglePower()) ); 114 QObject::connect( &a, SIGNAL(power()), d, SLOT(togglePower()) );