diff options
author | Arno Moeller <am@mindwerk.de> | 2010-06-17 14:41:08 +0200 |
---|---|---|
committer | Arno Moeller <am@mindwerk.de> | 2010-06-17 14:41:08 +0200 |
commit | a3d9cab9edae313f2f172688a1aa9b352ec7bbd6 (patch) | |
tree | 52db36a131a164a732d3a52fc7abd650c2614c13 /moviemodel.cpp | |
parent | f5a7d411051d3112a90e26f1e382dc1e00fb9a00 (diff) | |
download | SheMov-a3d9cab9edae313f2f172688a1aa9b352ec7bbd6.tar.gz SheMov-a3d9cab9edae313f2f172688a1aa9b352ec7bbd6.tar.bz2 SheMov-a3d9cab9edae313f2f172688a1aa9b352ec7bbd6.zip |
Fixed SeriesTreeModel
There was no serious problem with the database schema. Maybe I should
have gone to bed earlier. Updating and changing series names now works.
Diffstat (limited to 'moviemodel.cpp')
-rw-r--r-- | moviemodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/moviemodel.cpp b/moviemodel.cpp index d9b0c22..c77172d 100644 --- a/moviemodel.cpp +++ b/moviemodel.cpp @@ -56,7 +56,7 @@ MovieModel::MovieModel(QObject *parent) : QAbstractItemModel(parent) { QSqlQuery *c9 = new QSqlQuery; c9->prepare("UPDATE movies set ipartno = :value WHERE imovid = :id"); mColumnQueries << c9; - populate(); + //populate(); } MovieModel::~MovieModel(){ |