diff options
author | Darrell Anderson <[email protected]> | 2014-02-16 13:28:04 -0600 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2014-02-16 13:28:04 -0600 |
commit | f89e928f959777a8c2007c1d174634697f450730 (patch) | |
tree | 0de2877839cac2d8c73f82e7f4d9b49850daf946 | |
parent | a2971722db2e991a2aa07f6f9002377f7f99c93d (diff) | |
download | amarok-f89e928f959777a8c2007c1d174634697f450730.tar.gz amarok-f89e928f959777a8c2007c1d174634697f450730.zip |
Fix unintended renaming
-rw-r--r-- | amarok/src/scripts/graphequalizer/main.cpp | 2 | ||||
-rw-r--r-- | 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 <tdeapplication.h> 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 && 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; } |