summaryrefslogtreecommitdiffstats
path: root/kopete
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 00:37:37 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 00:37:37 -0600
commit7f8c2db2f66cc2bc671bc92e0fc4efa967ff2351 (patch)
tree17a5cf137f9c54dfb33e43564175ea7aa2adc483 /kopete
parent77018e9b0728ffa195685c2ad40511959c74cfba (diff)
downloadtdenetwork-7f8c2db2f66cc2bc671bc92e0fc4efa967ff2351.tar.gz
tdenetwork-7f8c2db2f66cc2bc671bc92e0fc4efa967ff2351.zip
Rename KShared
Diffstat (limited to 'kopete')
-rw-r--r--kopete/libkopete/kopetemessage.cpp4
-rw-r--r--kopete/libkopete/kopetemessage.h2
-rw-r--r--kopete/libkopete/kopetemessagehandlerchain.h6
-rw-r--r--kopete/libkopete/kopeteonlinestatus.cpp2
-rw-r--r--kopete/libkopete/kopeteonlinestatus.h2
-rw-r--r--kopete/libkopete/kopetepicture.cpp4
-rw-r--r--kopete/libkopete/kopetepicture.h2
-rw-r--r--kopete/protocols/irc/libkirc/kircentity.h8
8 files changed, 15 insertions, 15 deletions
diff --git a/kopete/libkopete/kopetemessage.cpp b/kopete/libkopete/kopetemessage.cpp
index c094ba72..a70b137b 100644
--- a/kopete/libkopete/kopetemessage.cpp
+++ b/kopete/libkopete/kopetemessage.cpp
@@ -43,7 +43,7 @@
using namespace Kopete;
class Message::Private
- : public KShared
+ : public TDEShared
{
public:
Private( const TQDateTime &timeStamp, const Contact *from, const ContactPtrList &to,
@@ -145,7 +145,7 @@ Message::~Message()
void Message::detach()
{
- // there is no detach in KSharedPtr :(
+ // there is no detach in TDESharedPtr :(
if( d.count() == 1 )
return;
diff --git a/kopete/libkopete/kopetemessage.h b/kopete/libkopete/kopetemessage.h
index 366a0204..927b5699 100644
--- a/kopete/libkopete/kopetemessage.h
+++ b/kopete/libkopete/kopetemessage.h
@@ -411,7 +411,7 @@ private:
void doSetBody( const TQString &body, MessageFormat format = PlainText );
class Private;
- KSharedPtr<Private> d;
+ TDESharedPtr<Private> d;
static TQString parseLinks( const TQString &message, MessageFormat format );
};
diff --git a/kopete/libkopete/kopetemessagehandlerchain.h b/kopete/libkopete/kopetemessagehandlerchain.h
index 2fd253b9..7f1ea6ee 100644
--- a/kopete/libkopete/kopetemessagehandlerchain.h
+++ b/kopete/libkopete/kopetemessagehandlerchain.h
@@ -41,13 +41,13 @@ class ProcessMessageTask;
*
* @author Richard Smith <kde@metafoo.co.uk>
*/
-class MessageHandlerChain : public TQObject, private KShared
+class MessageHandlerChain : public TQObject, private TDEShared
{
Q_OBJECT
public:
- friend class KSharedPtr<MessageHandlerChain>;
- typedef KSharedPtr<MessageHandlerChain> Ptr;
+ friend class TDESharedPtr<MessageHandlerChain>;
+ typedef TDESharedPtr<MessageHandlerChain> Ptr;
/**
* Create a new MessageHandlerChain object with the appropriate handlers for
diff --git a/kopete/libkopete/kopeteonlinestatus.cpp b/kopete/libkopete/kopeteonlinestatus.cpp
index da9bb5d5..35ec4e4f 100644
--- a/kopete/libkopete/kopeteonlinestatus.cpp
+++ b/kopete/libkopete/kopeteonlinestatus.cpp
@@ -36,7 +36,7 @@
using namespace Kopete;
class OnlineStatus::Private
- : public KShared
+ : public TDEShared
{
public:
StatusType status;
diff --git a/kopete/libkopete/kopeteonlinestatus.h b/kopete/libkopete/kopeteonlinestatus.h
index 5349677d..b1308131 100644
--- a/kopete/libkopete/kopeteonlinestatus.h
+++ b/kopete/libkopete/kopeteonlinestatus.h
@@ -401,7 +401,7 @@ public:
private:
class Private;
- KSharedPtr<Private> d;
+ TDESharedPtr<Private> d;
TQString mimeSource( const TQString& icon, int size, TQColor color, bool idle) const;
diff --git a/kopete/libkopete/kopetepicture.cpp b/kopete/libkopete/kopetepicture.cpp
index 1336492f..11e067cb 100644
--- a/kopete/libkopete/kopetepicture.cpp
+++ b/kopete/libkopete/kopetepicture.cpp
@@ -27,7 +27,7 @@
namespace Kopete
{
-class Picture::Private : public KShared
+class Picture::Private : public TDEShared
{
public:
Private()
@@ -186,7 +186,7 @@ void Picture::setPicture(const KABC::Picture &picture)
void Picture::detach()
{
- // there is no detach in KSharedPtr.
+ // there is no detach in TDESharedPtr.
if( d.count() == 1 )
return;
diff --git a/kopete/libkopete/kopetepicture.h b/kopete/libkopete/kopetepicture.h
index a681e7ca..7b8de0d4 100644
--- a/kopete/libkopete/kopetepicture.h
+++ b/kopete/libkopete/kopetepicture.h
@@ -141,7 +141,7 @@ private:
void detach();
class Private;
- KSharedPtr<Private> d;
+ TDESharedPtr<Private> d;
};
}//END namespace Kopete
diff --git a/kopete/protocols/irc/libkirc/kircentity.h b/kopete/protocols/irc/libkirc/kircentity.h
index 3536b4a1..0170dd08 100644
--- a/kopete/protocols/irc/libkirc/kircentity.h
+++ b/kopete/protocols/irc/libkirc/kircentity.h
@@ -34,7 +34,7 @@ class Engine;
class Entity
: public TQObject,
- public KShared
+ public TDEShared
{
Q_OBJECT
@@ -95,15 +95,15 @@ private:
};
class EntityPtr
- : public KSharedPtr<KIRC::Entity>
+ : public TDESharedPtr<KIRC::Entity>
{
public:
EntityPtr(KIRC::Entity *entity = 0)
- : KSharedPtr<KIRC::Entity>(entity)
+ : TDESharedPtr<KIRC::Entity>(entity)
{ }
EntityPtr(const KIRC::EntityPtr &entity)
- : KSharedPtr<KIRC::Entity>(entity)
+ : TDESharedPtr<KIRC::Entity>(entity)
{ }
};