summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/irc
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/protocols/irc
parent77018e9b0728ffa195685c2ad40511959c74cfba (diff)
downloadtdenetwork-7f8c2db2f66cc2bc671bc92e0fc4efa967ff2351.tar.gz
tdenetwork-7f8c2db2f66cc2bc671bc92e0fc4efa967ff2351.zip
Rename KShared
Diffstat (limited to 'kopete/protocols/irc')
-rw-r--r--kopete/protocols/irc/libkirc/kircentity.h8
1 files changed, 4 insertions, 4 deletions
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)
{ }
};