Fix unintended renaming

pull/1/head
Darrell Anderson 10 years ago
parent a2971722db
commit f89e928f95

@ -3,7 +3,7 @@
* Released under GPL 2 or later, see COPYING
*/
#include "etqdialog.h"
#include "eqdialog.h"
#include "equalizercanvasview.h"
#include "stdinreader.h"
#include <tdeapplication.h>

@ -9403,7 +9403,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 */
sqlite3_vtab_cursor *pVtabCursor; /* The cursor for a virtual table */
const sqlite3_module *pModule; /* Module for cursor pVtabCursor */
@ -36767,7 +36767,7 @@ case OP_Sequence: {
assert( i>=0 && i<p->nCursor );
assert( p->apCsr[i]!=0 );
pTos++;
pTos->u.i = p->apCsr[i]->setqCount++;
pTos->u.i = p->apCsr[i]->setCount++;
pTos->flags = MEM_Int;
break;
}

Loading…
Cancel
Save