diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 00:15:51 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 00:15:51 -0600 |
commit | f7055674768fa7f0267da4a14b9061e60ebab3fc (patch) | |
tree | 9cf91b2040d16220234c24c945e950952c359832 /kexi/kexidb | |
parent | af2ab9c9888013e42237f71166eeafe5e988da0f (diff) | |
download | koffice-f7055674768fa7f0267da4a14b9061e60ebab3fc.tar.gz koffice-f7055674768fa7f0267da4a14b9061e60ebab3fc.zip |
Rename KShared
Diffstat (limited to 'kexi/kexidb')
-rw-r--r-- | kexi/kexidb/preparedstatement.cpp | 2 | ||||
-rw-r--r-- | kexi/kexidb/preparedstatement.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kexi/kexidb/preparedstatement.cpp b/kexi/kexidb/preparedstatement.cpp index ce96f630..f1ab679c 100644 --- a/kexi/kexidb/preparedstatement.cpp +++ b/kexi/kexidb/preparedstatement.cpp @@ -27,7 +27,7 @@ using namespace KexiDB; PreparedStatement::PreparedStatement(StatementType type, ConnectionInternal& conn, FieldList& fields, const TQStringList& where) - : KShared() + : TDEShared() , m_type(type) , m_fields(&fields) , m_where(where.isEmpty() ? new TQStringList(where) : 0) diff --git a/kexi/kexidb/preparedstatement.h b/kexi/kexidb/preparedstatement.h index 463c3c44..fa8e58a6 100644 --- a/kexi/kexidb/preparedstatement.h +++ b/kexi/kexidb/preparedstatement.h @@ -70,10 +70,10 @@ class FieldList; Depending on database backend, you can avoid escaping BLOBs. See KexiFormView::storeData() for example use. */ -class KEXI_DB_EXPORT PreparedStatement : public KShared +class KEXI_DB_EXPORT PreparedStatement : public TDEShared { public: - typedef KSharedPtr<PreparedStatement> Ptr; + typedef TDESharedPtr<PreparedStatement> Ptr; //! Defines type of the prepared statement. enum StatementType { |