diff options
Diffstat (limited to 'kbugbuster/backend')
-rw-r--r-- | kbugbuster/backend/bug.h | 2 | ||||
-rw-r--r-- | kbugbuster/backend/bugdetails.h | 2 | ||||
-rw-r--r-- | kbugbuster/backend/bugdetailsimpl.h | 2 | ||||
-rw-r--r-- | kbugbuster/backend/bugimpl.h | 2 | ||||
-rw-r--r-- | kbugbuster/backend/package.h | 2 | ||||
-rw-r--r-- | kbugbuster/backend/packageimpl.h | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/kbugbuster/backend/bug.h b/kbugbuster/backend/bug.h index 406179c8..a4de9e48 100644 --- a/kbugbuster/backend/bug.h +++ b/kbugbuster/backend/bug.h @@ -83,7 +83,7 @@ public: private: BugImpl *impl() const { return m_impl; } - KSharedPtr<BugImpl> m_impl; + TDESharedPtr<BugImpl> m_impl; }; #endif diff --git a/kbugbuster/backend/bugdetails.h b/kbugbuster/backend/bugdetails.h index 171847a7..45a426d4 100644 --- a/kbugbuster/backend/bugdetails.h +++ b/kbugbuster/backend/bugdetails.h @@ -46,7 +46,7 @@ public: private: BugDetailsImpl *impl() const { return m_impl; } - KSharedPtr<BugDetailsImpl> m_impl; + TDESharedPtr<BugDetailsImpl> m_impl; }; #endif diff --git a/kbugbuster/backend/bugdetailsimpl.h b/kbugbuster/backend/bugdetailsimpl.h index 5d6dc459..e4db5cd0 100644 --- a/kbugbuster/backend/bugdetailsimpl.h +++ b/kbugbuster/backend/bugdetailsimpl.h @@ -5,7 +5,7 @@ #include "bugdetailspart.h" -struct BugDetailsImpl : public KShared +struct BugDetailsImpl : public TDEShared { public: BugDetailsImpl( const TQString &_version, const TQString &_source, diff --git a/kbugbuster/backend/bugimpl.h b/kbugbuster/backend/bugimpl.h index 7fefc53d..bddd6a4d 100644 --- a/kbugbuster/backend/bugimpl.h +++ b/kbugbuster/backend/bugimpl.h @@ -7,7 +7,7 @@ #include <kurl.h> #include <ksharedptr.h> -struct BugImpl : public KShared +struct BugImpl : public TDEShared { public: BugImpl( const TQString &_title, const Person &_submitter, TQString _number, diff --git a/kbugbuster/backend/package.h b/kbugbuster/backend/package.h index df0a119d..eecd067f 100644 --- a/kbugbuster/backend/package.h +++ b/kbugbuster/backend/package.h @@ -34,7 +34,7 @@ public: bool operator<( const Package &rhs ) const; private: - KSharedPtr<PackageImpl> m_impl; + TDESharedPtr<PackageImpl> m_impl; }; #endif diff --git a/kbugbuster/backend/packageimpl.h b/kbugbuster/backend/packageimpl.h index 30fd00af..0d7173c2 100644 --- a/kbugbuster/backend/packageimpl.h +++ b/kbugbuster/backend/packageimpl.h @@ -7,7 +7,7 @@ #include <kurl.h> #include <ksharedptr.h> -struct PackageImpl : public KShared +struct PackageImpl : public TDEShared { public: PackageImpl( const TQString &_name, const TQString &_description, |