diff options
author | maximius <none@none> | 2009-10-17 16:20:24 -0700 |
---|---|---|
committer | maximius <none@none> | 2009-10-17 16:20:24 -0700 |
commit | 3f338cc1c328c7280957583b50598292cd8fb64b (patch) | |
tree | ca209c2cd024e3902b7844b3224bceff7c5bb570 /src/shared/Database/SQLStorageImpl.h | |
parent | e585187b248f48b3c6e9247b49fa07c6565d65e5 (diff) |
*Massive cleanup redux.
--HG--
branch : trunk
Diffstat (limited to 'src/shared/Database/SQLStorageImpl.h')
-rw-r--r-- | src/shared/Database/SQLStorageImpl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/Database/SQLStorageImpl.h b/src/shared/Database/SQLStorageImpl.h index b511bdad68c..5ad8a66679a 100644 --- a/src/shared/Database/SQLStorageImpl.h +++ b/src/shared/Database/SQLStorageImpl.h @@ -166,7 +166,7 @@ void SQLStorageLoaderBase<T>::Load(SQLStorage &store) uint32 sc=0; uint32 bo=0; uint32 bb=0; - for(uint32 x=0; x< store.iNumFields; x++) + for (uint32 x=0; x< store.iNumFields; x++) if(store.dst_format[x]==FT_STRING) ++sc; else if (store.dst_format[x]==FT_LOGIC) @@ -189,7 +189,7 @@ void SQLStorageLoaderBase<T>::Load(SQLStorage &store) newIndex[fields[0].GetUInt32()]=p; offset=0; - for(uint32 x = 0; x < store.iNumFields; x++) + for (uint32 x = 0; x < store.iNumFields; x++) switch(store.src_format[x]) { case FT_LOGIC: |