summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2014-02-16 14:32:35 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2014-02-16 14:32:35 -0600
commit98087078ddc9770f46257b7f905b902679433e40 (patch)
treec9cbd69d27f2d6a4ce8cddfcb581a0e0a8e1d723
parentf1ce972ed03ff76137fda623df7bb4336a8de7f0 (diff)
downloadkoffice-98087078.tar.gz
koffice-98087078.zip
Fix unintended renaming
-rw-r--r--kexi/3rdparty/kexisql3/src/vdbe.c2
-rw-r--r--kexi/3rdparty/kexisql3/src/vdbeInt.h2
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.