diff options
author | Arno <am@disconnect.de> | 2014-07-09 14:05:15 +0200 |
---|---|---|
committer | Arno <am@disconnect.de> | 2014-07-09 14:05:15 +0200 |
commit | 1e84e246d1a4e0b24657e9c416c6ce4a0eb002d5 (patch) | |
tree | 1aaad4e6ffacaa13c4fbe0193c892c7e8d7add49 /newpicsdialog.cpp | |
parent | 7a2c2c37d4324935ea55221b57d1c878fff4860e (diff) | |
download | SheMov-1e84e246d1a4e0b24657e9c416c6ce4a0eb002d5.tar.gz SheMov-1e84e246d1a4e0b24657e9c416c6ce4a0eb002d5.tar.bz2 SheMov-1e84e246d1a4e0b24657e9c416c6ce4a0eb002d5.zip |
Fix commit dc7cc269a4fffe43bdac2ae2dc6548fbd1e3bb5e
Since that commit we not only recorded leaves for Mappings, but also the
nodes. This is plain wrong, since we build the path/tree ourselves where
it matters (e.g. MappingTreeItem).
Fix it by checking recursively if the MappingItem has children.
Diffstat (limited to 'newpicsdialog.cpp')
-rw-r--r-- | newpicsdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newpicsdialog.cpp b/newpicsdialog.cpp index 2b14c6d..e665f3b 100644 --- a/newpicsdialog.cpp +++ b/newpicsdialog.cpp @@ -147,7 +147,7 @@ void NewPicsDialog::accept(){ if(files.isEmpty()){ return QDialog::accept(); } - QList<QVariant> mappingParentsIds = mMappingEditWidget->model()->columnValues(MappingTreeResultModel::MappingId); + QList<QVariant> mappingParentsIds = mMappingEditWidget->model()->getMappings(mMappingEditWidget->model()->root()); QSqlQuery addFileQ(mDb); addFileQ.prepare("INSERT INTO pics (tfilename, cmd5sum, isize, tformat, cpicsize) VALUES(:fn, :md5, :size, :format, :picsize)"); QSqlQuery addMappingQ(mDb); |