summaryrefslogtreecommitdiffstats
path: root/smdirmodel.cpp
diff options
context:
space:
mode:
authorArno <am@disconnect.de>2014-12-10 22:10:50 +0100
committerArno <am@disconnect.de>2014-12-10 22:10:50 +0100
commit2c022561f692a813b44da39d6ffdcb373aa4c7ba (patch)
treea500c3623572e1230b12b2302b00bf558502dadd /smdirmodel.cpp
parent343d3db5f5ad571527a7ca70457cbb6ccb1bbb71 (diff)
downloadSheMov-2c022561f692a813b44da39d6ffdcb373aa4c7ba.tar.gz
SheMov-2c022561f692a813b44da39d6ffdcb373aa4c7ba.tar.bz2
SheMov-2c022561f692a813b44da39d6ffdcb373aa4c7ba.zip
Various Bugfixes and cleanups
* remove debug statements from SmDirWatcher * Don't crash on parentDir when current Dir is already deleted * Fix PicFilesModel MappingQuery. It needlessly referenced the table pics in FROM causing an expensive full table scan! * Fix findRecursive in PicFilesModel: Stupid typo! * Give SmDirWatcher a separate DB-Connection. One Thread, one Connection * Remove several includes This should have been 6 commits, but that's how debugging works :(
Diffstat (limited to 'smdirmodel.cpp')
-rw-r--r--smdirmodel.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/smdirmodel.cpp b/smdirmodel.cpp
index 4f6968a..1552044 100644
--- a/smdirmodel.cpp
+++ b/smdirmodel.cpp
@@ -16,7 +16,6 @@
#include "helper.h"
SmDirModel::SmDirModel(const QStringList &headers, QObject *parent) : SmTreeModel(headers, parent), mHeaders(headers), mExpensiveOps(true){
- mDb = QSqlDatabase::database("treedb");
mWatch = new SmDirWatcher(NumFields, this);
connect(mWatch, SIGNAL(needRefresh()), this, SLOT(refresh()));
mRunTimer = new QTimer(this);