- Fixed some signals/slots (safer)

- Forgot to remove temp file when the file was downloaded from an url (rare occasions)
This commit is contained in:
Christophe Dumez 2007-07-22 09:47:27 +00:00
parent 8c05caba3a
commit 325a588526
17 changed files with 156 additions and 155 deletions

View file

@ -128,7 +128,7 @@ class misc : public QObject{
return true;
}
static QString findFileInDir(const QString& dir_path, const QString& fileName){
static QString findFileInDir(QString dir_path, QString fileName){
QDir dir(dir_path);
if(dir.exists(fileName)){
return dir.filePath(fileName);