diff options
Diffstat (limited to 'editors/calligra/files/patch-kexi_kexidb-preparedstatement.cpp')
-rw-r--r-- | editors/calligra/files/patch-kexi_kexidb-preparedstatement.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/editors/calligra/files/patch-kexi_kexidb-preparedstatement.cpp b/editors/calligra/files/patch-kexi_kexidb-preparedstatement.cpp new file mode 100644 index 000000000000..2f0cd77eaa23 --- /dev/null +++ b/editors/calligra/files/patch-kexi_kexidb-preparedstatement.cpp @@ -0,0 +1,11 @@ +--- kexi/kexidb/preparedstatement.cpp.orig Thu May 25 15:55:54 2006 ++++ kexi/kexidb/preparedstatement.cpp Thu May 25 16:02:59 2006 +@@ -104,7 +104,7 @@ + } + s.append(")"); + s.prepend(QCString("INSERT INTO ") + table->name().latin1() +- + (allTableFieldsUsed ? "" : (" (" + namesList + ")")) ++ + (allTableFieldsUsed ? QCString("") : (" (" + namesList + ")")) + + " VALUES ("); + } + return s; |