diff options
author | horchi <vdr@jwendel.de> | 2017-12-22 11:09:46 +0100 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2017-12-22 11:09:46 +0100 |
commit | 56c04bd8e18f88c3c8e3c023cc4507570b371c06 (patch) | |
tree | 22eae9a2067614035000dfab310a24aeb92a700c /lib/db.h | |
parent | 370d37dc3e5ee26755bdae61008ab18b12392e1c (diff) | |
download | vdr-plugin-epg2vdr-56c04bd8e18f88c3c8e3c023cc4507570b371c06.tar.gz vdr-plugin-epg2vdr-56c04bd8e18f88c3c8e3c023cc4507570b371c06.tar.bz2 |
2017-12-22 version 1.1.77 (horchi)\n - change: backward compatibility to vdr 2.2.0 - another step\n\n1.1.77
Diffstat (limited to 'lib/db.h')
-rw-r--r-- | lib/db.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -615,7 +615,8 @@ class cDbRow : public cDbService int count = 0; for (int f = 0; f < tableDef->fieldCount(); f++) - count += dbValues[f].getChanges(); + if (dbValues[f].getChanges()) + count++; return count; } |