summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/embeddedkonsole/main.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/apps/embeddedkonsole/main.cpp b/core/apps/embeddedkonsole/main.cpp
index 5bb71c0..b3c0453 100644
--- a/core/apps/embeddedkonsole/main.cpp
+++ b/core/apps/embeddedkonsole/main.cpp
@@ -50,13 +50,12 @@ int main(int argc, char* argv[])
50 // sh is completely broken on familiar. Let's try to get something better 50 // sh is completely broken on familiar. Let's try to get something better
51 if ( qstrcmp( shell, "/bin/shell" ) == 0 && QFile::exists( "/bin/bash" ) ) 51 if ( qstrcmp( shell, "/bin/shell" ) == 0 && QFile::exists( "/bin/bash" ) )
52 shell = "/bin/bash"; 52 shell = "/bin/bash";
53 53
54 putenv((char*)"COLORTERM="); // to trigger mc's color detection 54 putenv((char*)"COLORTERM="); // to trigger mc's color detection
55 55
56 tmp.insert(0,"-"); // we want a login shell
57 Konsole m( "test", shell, tmp, TRUE ); 56 Konsole m( "test", shell, tmp, TRUE );
58 m.setCaption( Konsole::tr("Terminal") ); 57 m.setCaption( Konsole::tr("Terminal") );
59 a.showMainWidget( &m ); 58 a.showMainWidget( &m );
60 59
61 return a.exec(); 60 return a.exec();
62} 61}