diff options
author | Adrian Negreanu <groleo@gmail.com> | 2013-08-04 20:11:44 (GMT) |
---|---|---|
committer | Adrian Negreanu <groleo@gmail.com> | 2013-08-04 20:11:44 (GMT) |
commit | 1adc7fd072651951db51424013ff7d45cc6b3c1a (patch) | |
tree | 12c3da534c1a0d3e88a7cf4e1e7ba6223a59caa9 /src/sqlite3gen.cpp | |
parent | 397c31a2d64173c0dc50567896fee378bea2fca0 (diff) | |
download | Doxygen-1adc7fd072651951db51424013ff7d45cc6b3c1a.zip Doxygen-1adc7fd072651951db51424013ff7d45cc6b3c1a.tar.gz Doxygen-1adc7fd072651951db51424013ff7d45cc6b3c1a.tar.bz2 |
sqlite3: more SQLITE_TRANSIENT-s
Signed-off-by: Adrian Negreanu <groleo@gmail.com>
Diffstat (limited to 'src/sqlite3gen.cpp')
-rw-r--r-- | src/sqlite3gen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqlite3gen.cpp b/src/sqlite3gen.cpp index c83b2c7..a3f93ef 100644 --- a/src/sqlite3gen.cpp +++ b/src/sqlite3gen.cpp @@ -943,9 +943,9 @@ static void generateSqlite3ForClass(sqlite3 *db, ClassDef *cd) //stmt = i_s_compounddef; bindTextParameter(i_s_compounddef,":name",cd->name()); - bindTextParameter(i_s_compounddef,":kind",cd->compoundTypeString()); + bindTextParameter(i_s_compounddef,":kind",cd->compoundTypeString(),FALSE); bindIntParameter(i_s_compounddef,":prot",cd->protection()); - bindTextParameter(i_s_compounddef,":refid",cd->getOutputFileBase()); + bindTextParameter(i_s_compounddef,":refid",cd->getOutputFileBase(),FALSE); int id_file = insertFile(db,cd->getDefFileName().data()); bindIntParameter(i_s_compounddef,":id_file",id_file); |