summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2002-05-23 02:58:32 (UTC)
committer llornkcor <llornkcor>2002-05-23 02:58:32 (UTC)
commit999d033f887064f5e1ddfd492f12a7f1ede72887 (patch) (unidiff)
treed8cd02814fa2edda14353fca8a0eaa39651092ea
parent375cce9ad697f99d54f3e1c60c6d197b535ed04e (diff)
downloadopie-999d033f887064f5e1ddfd492f12a7f1ede72887.zip
opie-999d033f887064f5e1ddfd492f12a7f1ede72887.tar.gz
opie-999d033f887064f5e1ddfd492f12a7f1ede72887.tar.bz2
workaround for bug with QPEApplication::documentDir() returning 'root/...' instead of '/root/...'
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/vmemo/vmemo.cpp6
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
@@ -273,66 +273,68 @@ bool VMemo::startRecording() {
273 config.setGroup( "System" ); 273 config.setGroup( "System" );
274 useAlerts = config.readBoolEntry("Alert"); 274 useAlerts = config.readBoolEntry("Alert");
275 275
276// if(useAlerts) 276// if(useAlerts)
277// QMessageBox::message("VMemo","Really Record?");//) ==1) 277// QMessageBox::message("VMemo","Really Record?");//) ==1)
278// return; 278// return;
279// } else { 279// } else {
280 if (!systemZaurus ) 280 if (!systemZaurus )
281 QSound::play(Resource::findSound("vmemob")); 281 QSound::play(Resource::findSound("vmemob"));
282// } 282// }
283 qDebug("Start recording"); 283 qDebug("Start recording");
284 recording = TRUE; 284 recording = TRUE;
285 if (openDSP() == -1) { 285 if (openDSP() == -1) {
286 QMessageBox::critical(0, "VMemo", "Could not open dsp device.\n"+errorMsg, "Abort"); 286 QMessageBox::critical(0, "VMemo", "Could not open dsp device.\n"+errorMsg, "Abort");
287 recording = FALSE; 287 recording = FALSE;
288 return FALSE; 288 return FALSE;
289 } 289 }
290 290
291 config.setGroup("Defaults"); 291 config.setGroup("Defaults");
292 292
293 QDateTime dt = QDateTime::currentDateTime(); 293 QDateTime dt = QDateTime::currentDateTime();
294 294
295 QString fName; 295 QString fName;
296 config.setGroup( "System" ); 296 config.setGroup( "System" );
297 fName = QPEApplication::documentDir() ; 297 fName = QPEApplication::documentDir() ;
298 fileName = config.readEntry("RecLocation", fName); 298 fileName = config.readEntry("RecLocation", fName);
299 299
300 int s; 300 int s;
301 s=fileName.find(':'); 301 s=fileName.find(':');
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;
310 qDebug("filename is "+fileName); 312 qDebug("filename is "+fileName);
311 // No spaces in the filename 313 // No spaces in the filename
312 fileName.replace(QRegExp("'"),""); 314 fileName.replace(QRegExp("'"),"");
313 fileName.replace(QRegExp(" "),"_"); 315 fileName.replace(QRegExp(" "),"_");
314 fileName.replace(QRegExp(":"),"."); 316 fileName.replace(QRegExp(":"),".");
315 fileName.replace(QRegExp(","),""); 317 fileName.replace(QRegExp(","),"");
316 318
317 if(openWAV(fileName.latin1()) == -1) { 319 if(openWAV(fileName.latin1()) == -1) {
318 QString err("Could not open the output file\n"); 320 QString err("Could not open the output file\n");
319 err += fileName; 321 err += fileName;
320 QMessageBox::critical(0, "VMemo", err, "Abort"); 322 QMessageBox::critical(0, "VMemo", err, "Abort");
321 close(dsp); 323 close(dsp);
322 return FALSE; 324 return FALSE;
323 } 325 }
324 326
325 QArray<int> cats(1); 327 QArray<int> cats(1);
326 cats[0] = config.readNumEntry("Category", 0); 328 cats[0] = config.readNumEntry("Category", 0);
327 329
328 QString dlName("vm_"); 330 QString dlName("vm_");
329 dlName += dt.toString(); 331 dlName += dt.toString();
330 DocLnk l; 332 DocLnk l;
331 l.setFile(fileName); 333 l.setFile(fileName);
332 l.setName(dlName); 334 l.setName(dlName);
333 l.setType("audio/x-wav"); 335 l.setType("audio/x-wav");
334 l.setCategories(cats); 336 l.setCategories(cats);
335 l.writeLink(); 337 l.writeLink();
336 338
337 record(); 339 record();
338 return TRUE; 340 return TRUE;