summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2005-06-26 12:34:25 (UTC)
committer mickeyl <mickeyl>2005-06-26 12:34:25 (UTC)
commit7eb3ca44b7ff351221b190840270c62c12be6402 (patch) (unidiff)
tree3323eceba9047d56824021f2a3fe4469f61fbe43
parentb4d2fa56d4b4608656f6b5cf3ff9375708395e91 (diff)
downloadopie-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.
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--core/launcher/main.cpp2
1 files changed, 1 insertions, 1 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
@@ -91,7 +91,7 @@ void initEnvironment()
91 if ( env.isEmpty() ) 91 if ( env.isEmpty() )
92 { 92 {
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;
96 setenv("QWS_DISPLAY", (const char*) qws_display, 1); 96 setenv("QWS_DISPLAY", (const char*) qws_display, 1);
97 } 97 }