summaryrefslogtreecommitdiffstats
path: root/tdefile-plugins/torrent
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 /tdefile-plugins/torrent
parent77018e9b0728ffa195685c2ad40511959c74cfba (diff)
downloadtdenetwork-7f8c2db2f66cc2bc671bc92e0fc4efa967ff2351.tar.gz
tdenetwork-7f8c2db2f66cc2bc671bc92e0fc4efa967ff2351.zip
Rename KShared
Diffstat (limited to 'tdefile-plugins/torrent')
-rw-r--r--tdefile-plugins/torrent/bbase.h6
-rw-r--r--tdefile-plugins/torrent/bdict.cpp2
-rw-r--r--tdefile-plugins/torrent/bytetape.h4
3 files changed, 6 insertions, 6 deletions
diff --git a/tdefile-plugins/torrent/bbase.h b/tdefile-plugins/torrent/bbase.h
index 30da7528..7a4693c6 100644
--- a/tdefile-plugins/torrent/bbase.h
+++ b/tdefile-plugins/torrent/bbase.h
@@ -32,11 +32,11 @@ class TQIODevice;
* check error status that way.
*
* @author Michael Pyne <mpyne@grammarian.homelinux.net>
- * @see BInt, BList, BDict, BString, KSharedPtr
+ * @see BInt, BList, BDict, BString, TDESharedPtr
*/
-// Derive from KShared to enable use of KSharedPtr.
-class BBase : public KShared
+// Derive from TDEShared to enable use of TDESharedPtr.
+class BBase : public TDEShared
{
public:
diff --git a/tdefile-plugins/torrent/bdict.cpp b/tdefile-plugins/torrent/bdict.cpp
index 712fd526..8ae17800 100644
--- a/tdefile-plugins/torrent/bdict.cpp
+++ b/tdefile-plugins/torrent/bdict.cpp
@@ -57,7 +57,7 @@ void BDict::init (ByteTape &tape)
BBase *temp_item = 0;
// Read in string
- KSharedPtr<BString> str (new BString (tape));
+ TDESharedPtr<BString> str (new BString (tape));
// Ensure str will be automatically deleted
if (!str || !str->isValid())
diff --git a/tdefile-plugins/torrent/bytetape.h b/tdefile-plugins/torrent/bytetape.h
index f7309b11..1dfbef09 100644
--- a/tdefile-plugins/torrent/bytetape.h
+++ b/tdefile-plugins/torrent/bytetape.h
@@ -23,7 +23,7 @@
#include <tqcstring.h>
-class ByteTapeShared : public KShared
+class ByteTapeShared : public TDEShared
{
public:
@@ -186,7 +186,7 @@ class ByteTape
private:
TQByteArray &m_array;
- KSharedPtr<ByteTapeShared> m_shared;
+ TDESharedPtr<ByteTapeShared> m_shared;
};
#endif /* _BYTETAPE_H */