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 /lib/kofficecore | |
parent | af2ab9c9888013e42237f71166eeafe5e988da0f (diff) | |
download | koffice-f7055674768fa7f0267da4a14b9061e60ebab3fc.tar.gz koffice-f7055674768fa7f0267da4a14b9061e60ebab3fc.zip |
Rename KShared
Diffstat (limited to 'lib/kofficecore')
-rw-r--r-- | lib/kofficecore/KoFilterChain.h | 4 | ||||
-rw-r--r-- | lib/kofficecore/KoMainWindow.cpp | 2 | ||||
-rw-r--r-- | lib/kofficecore/KoQueryTrader.h | 4 | ||||
-rw-r--r-- | lib/kofficecore/KoSpeaker.h | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/lib/kofficecore/KoFilterChain.h b/lib/kofficecore/KoFilterChain.h index a044eebe..a1f3d239 100644 --- a/lib/kofficecore/KoFilterChain.h +++ b/lib/kofficecore/KoFilterChain.h @@ -47,7 +47,7 @@ namespace KOffice { * @author Werner Trobin <trobin@kde.org> * @todo the class has no constructor and therefore cannot initialize its private class */ -class KOFFICECORE_EXPORT KoFilterChain : public KShared +class KOFFICECORE_EXPORT KoFilterChain : public TDEShared { // Only KOffice::Graph is allowed to construct instances and // add chain links. @@ -55,7 +55,7 @@ class KOFFICECORE_EXPORT KoFilterChain : public KShared friend class KoFilterManager; public: - typedef KSharedPtr<KoFilterChain> Ptr; + typedef TDESharedPtr<KoFilterChain> Ptr; virtual ~KoFilterChain(); diff --git a/lib/kofficecore/KoMainWindow.cpp b/lib/kofficecore/KoMainWindow.cpp index 483ff683..12e0013d 100644 --- a/lib/kofficecore/KoMainWindow.cpp +++ b/lib/kofficecore/KoMainWindow.cpp @@ -180,7 +180,7 @@ public: TQCString m_lastExportFormat; int m_lastExportSpecialOutputFlag; - KSharedPtr<KoSpeaker> m_koSpeaker; + TDESharedPtr<KoSpeaker> m_koSpeaker; }; KoMainWindow::KoMainWindow( TDEInstance *instance, const char* name ) diff --git a/lib/kofficecore/KoQueryTrader.h b/lib/kofficecore/KoQueryTrader.h index 8f81e323..e7afc23a 100644 --- a/lib/kofficecore/KoQueryTrader.h +++ b/lib/kofficecore/KoQueryTrader.h @@ -116,11 +116,11 @@ private: /** * Represents an available filter. */ -class KoFilterEntry : public KShared +class KoFilterEntry : public TDEShared { public: - typedef KSharedPtr<KoFilterEntry> Ptr; + typedef TDESharedPtr<KoFilterEntry> Ptr; KoFilterEntry() : weight( 0 ) { m_service = 0L; } // for TQValueList KoFilterEntry( KService::Ptr service ); diff --git a/lib/kofficecore/KoSpeaker.h b/lib/kofficecore/KoSpeaker.h index c4ab8786..7376e4ca 100644 --- a/lib/kofficecore/KoSpeaker.h +++ b/lib/kofficecore/KoSpeaker.h @@ -60,7 +60,7 @@ class KoSpeakerPrivate; * * KOffice applications can access this object using the kospeaker global. */ -class KOFFICECORE_EXPORT KoSpeaker : public TQObject, public KShared +class KOFFICECORE_EXPORT KoSpeaker : public TQObject, public TDEShared { Q_OBJECT |