author | mickeyl <mickeyl> | 2005-06-26 12:34:25 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2005-06-26 12:34:25 (UTC) |
commit | 7eb3ca44b7ff351221b190840270c62c12be6402 (patch) (unidiff) | |
tree | 3323eceba9047d56824021f2a3fe4469f61fbe43 | |
parent | b4d2fa56d4b4608656f6b5cf3ff9375708395e91 (diff) | |
download | opie-7eb3ca44b7ff351221b190840270c62c12be6402.zip opie-7eb3ca44b7ff351221b190840270c62c12be6402.tar.gz opie-7eb3ca44b7ff351221b190840270c62c12be6402.tar.bz2 |
get preffered qte driver name from ODevice instead of hard coding it to
"Transformed". Patch courtesy Manuel Teira.
-rw-r--r-- | core/launcher/main.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/core/launcher/main.cpp b/core/launcher/main.cpp index 5bbed59..8ed8710 100644 --- a/core/launcher/main.cpp +++ b/core/launcher/main.cpp | |||
@@ -88,3 +88,3 @@ void initEnvironment() | |||
88 | odebug << "ODevice reports transformation to be " << t << oendl; | 88 | odebug << "ODevice reports transformation to be " << t << oendl; |
89 | 89 | ||
90 | QString env( getenv("QWS_DISPLAY") ); | 90 | QString env( getenv("QWS_DISPLAY") ); |
@@ -93,3 +93,3 @@ void initEnvironment() | |||
93 | int rot = ODevice::inst()->rotation() * 90; | 93 | int rot = ODevice::inst()->rotation() * 90; |
94 | QString qws_display = QString("Transformed:Rot%1:0").arg(rot); | 94 | QString qws_display = QString( "%1:Rot%2:0").arg(ODevice::inst()->qteDriver()).arg(rot); |
95 | odebug << "setting QWS_DISPLAY to '" << qws_display << "'" << oendl; | 95 | odebug << "setting QWS_DISPLAY to '" << qws_display << "'" << oendl; |
@@ -100,3 +100,3 @@ void initEnvironment() | |||
100 | 100 | ||
101 | QPEApplication::defaultRotation(); /* to ensure deforient matches reality */ | 101 | QPEApplication::defaultRotation(); /* to ensure deforient matches reality */ |
102 | } | 102 | } |
@@ -173,3 +173,3 @@ int initApplication( int argc, char ** argv ) | |||
173 | 173 | ||
174 | #if 0 | 174 | #if 0 |
175 | if ( QDate::currentDate().year() < 2005 ) | 175 | if ( QDate::currentDate().year() < 2005 ) |
@@ -190,3 +190,3 @@ int initApplication( int argc, char ** argv ) | |||
190 | odebug << "<-- mainloop out" << oendl; | 190 | odebug << "<-- mainloop out" << oendl; |
191 | remove_pidfile(); | 191 | remove_pidfile(); |
192 | odebug << "removing server object..." << oendl; | 192 | odebug << "removing server object..." << oendl; |