diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2014-02-16 14:32:35 -0600 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2014-02-16 14:32:35 -0600 |
commit | 98087078ddc9770f46257b7f905b902679433e40 (patch) | |
tree | c9cbd69d27f2d6a4ce8cddfcb581a0e0a8e1d723 | |
parent | f1ce972ed03ff76137fda623df7bb4336a8de7f0 (diff) | |
download | koffice-98087078ddc9770f46257b7f905b902679433e40.tar.gz koffice-98087078ddc9770f46257b7f905b902679433e40.zip |
Fix unintended renaming
-rw-r--r-- | kexi/3rdparty/kexisql3/src/vdbe.c | 2 | ||||
-rw-r--r-- | kexi/3rdparty/kexisql3/src/vdbeInt.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/kexi/3rdparty/kexisql3/src/vdbe.c b/kexi/3rdparty/kexisql3/src/vdbe.c index e70c0d2d..6153ac77 100644 --- a/kexi/3rdparty/kexisql3/src/vdbe.c +++ b/kexi/3rdparty/kexisql3/src/vdbe.c @@ -3020,7 +3020,7 @@ case OP_Sequence: { assert( i>=0 && i<p->nCursor ); assert( p->apCsr[i]!=0 ); pTos++; - pTos->i = p->apCsr[i]->setqCount++; + pTos->i = p->apCsr[i]->setCount++; pTos->flags = MEM_Int; break; } diff --git a/kexi/3rdparty/kexisql3/src/vdbeInt.h b/kexi/3rdparty/kexisql3/src/vdbeInt.h index 4c732b09..9e463705 100644 --- a/kexi/3rdparty/kexisql3/src/vdbeInt.h +++ b/kexi/3rdparty/kexisql3/src/vdbeInt.h @@ -81,7 +81,7 @@ struct Cursor { u8 *pIncrKey; /* Pointer to pKeyInfo->incrKey */ KeyInfo *pKeyInfo; /* Info about index keys needed by index cursors */ int nField; /* Number of fields in the header */ - i64 setqCount; /* Sequence counter */ + i64 setCount; /* Sequence counter */ /* Cached information about the header for the data record that the ** cursor is currently pointing to. Only valid if cacheValid is true. |