Replaced agg pixfmts

git-svn-id: svn://ultimatepp.org/upp/trunk@751 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2009-01-15 22:25:48 +00:00
parent 845ace0cc0
commit 4d6eb322b6
21 changed files with 277 additions and 4842 deletions

View file

@ -143,7 +143,7 @@ bool Sqlite3Connection::Execute() {
return false;
}
got_first_row = got_row_data = (retcode==SQLITE_ROW);
if (got_row_data) {
// if (got_row_data) { // By WebChaot, 2009-01-15
int numfields = sqlite3_column_count(current_stmt);
info.SetCount(numfields);
for (int i = 0; i < numfields; ++i) {
@ -177,7 +177,7 @@ bool Sqlite3Connection::Execute() {
break;
}
}
}
// }
return true;
}