author | zecke <zecke> | 2004-10-17 18:34:36 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-10-17 18:34:36 (UTC) |
commit | ca65f8eba5cd7e3a2e3096b545527ced8b76e5cd (patch) (unidiff) | |
tree | 96b742d6b8f1322158cdc66a8b3f8357d73ac571 | |
parent | 8eaae40a6b9db12813be60ec7c8afe21afd4478d (diff) | |
download | opie-ca65f8eba5cd7e3a2e3096b545527ced8b76e5cd.zip opie-ca65f8eba5cd7e3a2e3096b545527ced8b76e5cd.tar.gz opie-ca65f8eba5cd7e3a2e3096b545527ced8b76e5cd.tar.bz2 |
-Use local8Bit instead of latin1
-rw-r--r-- | core/launcher/serverapp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/launcher/serverapp.cpp b/core/launcher/serverapp.cpp index e541d10..be6b972 100644 --- a/core/launcher/serverapp.cpp +++ b/core/launcher/serverapp.cpp | |||
@@ -747,13 +747,13 @@ void ServerApplication::restart() | |||
747 | doRestart = TRUE; | 747 | doRestart = TRUE; |
748 | quit(); | 748 | quit(); |
749 | #else | 749 | #else |
750 | prepareForTermination( true ); | 750 | prepareForTermination( true ); |
751 | for ( int fd = 3; fd < 100; fd++ ) | 751 | for ( int fd = 3; fd < 100; fd++ ) |
752 | close( fd ); | 752 | close( fd ); |
753 | execl( ( qpeDir() + "/bin/qpe" ).latin1(), "qpe", 0 ); | 753 | execl( ( qpeDir() + "/bin/qpe" ).local8Bit(), "qpe", NULL ); |
754 | exit( 1 ); | 754 | exit( 1 ); |
755 | #endif | 755 | #endif |
756 | } | 756 | } |
757 | } | 757 | } |
758 | 758 | ||
759 | void ServerApplication::rereadVolumes() | 759 | void ServerApplication::rereadVolumes() |