aboutsummaryrefslogtreecommitdiff
path: root/editors/calligra/files/patch-kexi_kexidb_drivers_pqxx-pqxxdriver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'editors/calligra/files/patch-kexi_kexidb_drivers_pqxx-pqxxdriver.cpp')
-rw-r--r--editors/calligra/files/patch-kexi_kexidb_drivers_pqxx-pqxxdriver.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/editors/calligra/files/patch-kexi_kexidb_drivers_pqxx-pqxxdriver.cpp b/editors/calligra/files/patch-kexi_kexidb_drivers_pqxx-pqxxdriver.cpp
deleted file mode 100644
index bd06c9436ff7..000000000000
--- a/editors/calligra/files/patch-kexi_kexidb_drivers_pqxx-pqxxdriver.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
---- kexi/kexidb/drivers/pqxx/pqxxdriver.cpp.orig Sun Feb 11 16:38:08 2007
-+++ kexi/kexidb/drivers/pqxx/pqxxdriver.cpp Sun Feb 11 17:29:18 2007
-@@ -133,14 +133,14 @@
- //
- QString pqxxSqlDriver::escapeString( const QString& str) const
- {
-- return QString(pqxx::Quote(str.ascii()).c_str());
-+ return "'"+QString(pqxx::sqlesc(str.ascii()).c_str())+"'";
- }
-
- //==================================================================================
- //
- QCString pqxxSqlDriver::escapeString( const QCString& str) const
- {
-- return QCString(pqxx::Quote(QString(str).ascii()).c_str());
-+ return "'"+QCString(pqxx::sqlesc(QString(str).ascii()).c_str())+"'";
- }
-
- //==================================================================================