From f89e928f959777a8c2007c1d174634697f450730 Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Sun, 16 Feb 2014 13:28:04 -0600 Subject: [PATCH] Fix unintended renaming --- amarok/src/scripts/graphequalizer/main.cpp | 2 +- amarok/src/sqlite/sqlite3.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/amarok/src/scripts/graphequalizer/main.cpp b/amarok/src/scripts/graphequalizer/main.cpp index eeea187f..6bd13e61 100644 --- a/amarok/src/scripts/graphequalizer/main.cpp +++ b/amarok/src/scripts/graphequalizer/main.cpp @@ -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 diff --git a/amarok/src/sqlite/sqlite3.c b/amarok/src/sqlite/sqlite3.c index 5748a5f6..d3a2b1fb 100644 --- a/amarok/src/sqlite/sqlite3.c +++ b/amarok/src/sqlite/sqlite3.c @@ -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 && inCursor ); 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; }