author | llornkcor <llornkcor> | 2002-05-23 02:58:32 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-05-23 02:58:32 (UTC) |
commit | 999d033f887064f5e1ddfd492f12a7f1ede72887 (patch) (unidiff) | |
tree | d8cd02814fa2edda14353fca8a0eaa39651092ea | |
parent | 375cce9ad697f99d54f3e1c60c6d197b535ed04e (diff) | |
download | opie-999d033f887064f5e1ddfd492f12a7f1ede72887.zip opie-999d033f887064f5e1ddfd492f12a7f1ede72887.tar.gz opie-999d033f887064f5e1ddfd492f12a7f1ede72887.tar.bz2 |
workaround for bug with QPEApplication::documentDir() returning 'root/...' instead of '/root/...'
-rw-r--r-- | core/applets/vmemo/vmemo.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/applets/vmemo/vmemo.cpp b/core/applets/vmemo/vmemo.cpp index 7cc4062..f5d2b20 100644 --- a/core/applets/vmemo/vmemo.cpp +++ b/core/applets/vmemo/vmemo.cpp | |||
@@ -302,8 +302,10 @@ bool VMemo::startRecording() { | |||
302 | if(s) | 302 | if(s) |
303 | fileName=fileName.right(fileName.length()-s-2); | 303 | fileName=fileName.right(fileName.length()-s-2); |
304 | qDebug("filename will be "+fileName); | 304 | qDebug("filename will be "+fileName); |
305 | if( fileName.right(1).find('/') == -1) | 305 | if( fileName.left(1).find('/') == -1) |
306 | fileName+="/"; | 306 | fileName="/"+fileName; |
307 | if( fileName.right(1).find('/') == -1) | ||
308 | fileName+="/"; | ||
307 | fName = "vm_"+ dt.toString()+ ".wav"; | 309 | fName = "vm_"+ dt.toString()+ ".wav"; |
308 | 310 | ||
309 | fileName+=fName; | 311 | fileName+=fName; |