summaryrefslogtreecommitdiff
path: root/noncore/apps
Unidiff
Diffstat (limited to 'noncore/apps') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/fixit.cpp10
1 files changed, 3 insertions, 7 deletions
diff --git a/noncore/apps/opie-console/fixit.cpp b/noncore/apps/opie-console/fixit.cpp
index 5ac7673..57dba4c 100644
--- a/noncore/apps/opie-console/fixit.cpp
+++ b/noncore/apps/opie-console/fixit.cpp
@@ -65,9 +65,7 @@ void FixIt::fixIt() {
65 #else 65 #else
66 66
67 OProcess m_kill; 67 OProcess m_kill;
68 m_kill << "sh"; 68 m_kill << QPEApplication::qpeDir() + "/share/opie-console/sl6000_embedix_kill_0_1.sh";
69 m_kill << "-c";
70 m_kill << QString(QPEApplication::qpeDir() + "/share/opie-console/sl6000_embedix_kill_0_1.sh");
71 69
72 70
73 if ( !m_kill.start(OProcess::DontCare,OProcess::NoCommunication) ) { 71 if ( !m_kill.start(OProcess::DontCare,OProcess::NoCommunication) ) {
@@ -82,12 +80,10 @@ void FixIt::fixIt() {
82void FixIt::breakIt() { 80void FixIt::breakIt() {
83 #ifdef EAST 81 #ifdef EAST
84 OProcess m_restart; 82 OProcess m_restart;
85 m_restart << "sh"; 83 m_restart << QPEApplication::qpeDir() + "/share/opie-console/sl6000_embedix_restart_0_1.sh";
86 m_restart << "-c";
87 m_restart << QString(QPEApplication::qpeDir() + "/share/opie-console/sl6000_embedix_restart_0_1.sh");
88 84
89 85
90 if ( !m_restart.start() ) { 86 if ( !m_restart.start(OProcess::DontCare,OProcess::NoCommunication) ) {
91 owarn << "could not execute restart script" << oendl; 87 owarn << "could not execute restart script" << oendl;
92 } 88 }
93 89