summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/kopetegroup.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:48:06 +0000
commit47c8a359c5276062c4bc17f0e82410f29081b502 (patch)
tree2d54a5f60a5b74067632f9ef6df58c2bc38155e6 /kopete/libkopete/kopetegroup.h
parent6f82532777a35e0e60bbd2b290b2e93e646f349b (diff)
downloadtdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.tar.gz
tdenetwork-47c8a359c5276062c4bc17f0e82410f29081b502.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1157648 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/libkopete/kopetegroup.h')
-rw-r--r--kopete/libkopete/kopetegroup.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/kopete/libkopete/kopetegroup.h b/kopete/libkopete/kopetegroup.h
index 37b8572d..e832e955 100644
--- a/kopete/libkopete/kopetegroup.h
+++ b/kopete/libkopete/kopetegroup.h
@@ -24,7 +24,7 @@
#include "kopete_export.h"
-#include <qptrlist.h>
+#include <tqptrlist.h>
class QDomElement;
@@ -46,7 +46,7 @@ class Message;
*/
class KOPETE_EXPORT Group : public ContactListElement, public NotifyDataObject
{
- Q_PROPERTY( QString displayName READ displayName WRITE setDisplayName )
+ Q_PROPERTY( TQString displayName READ displayName WRITE setDisplayName )
Q_PROPERTY( uint groupId READ groupId )
Q_PROPERTY( bool expanded READ isExpanded WRITE setExpanded )
@@ -69,7 +69,7 @@ public:
*
* Overloaded constructor to create a group with a display name of the specified type.
*/
- Group( const QString &displayName, GroupType type = Normal );
+ Group( const TQString &displayName, GroupType type = Normal );
~Group();
@@ -78,12 +78,12 @@ public:
*
* \return the display name of the group
*/
- QString displayName() const;
+ TQString displayName() const;
/**
* \brief Rename the group
*/
- void setDisplayName( const QString &newName );
+ void setDisplayName( const TQString &newName );
/**
* \return the group type
@@ -105,7 +105,7 @@ public:
* This function is not very efficient - it searches through all the metacontacts in the contact list
* \return the members of this group
*/
- QPtrList<MetaContact> members() const;
+ TQPtrList<MetaContact> members() const;
/**
* \brief Set if the group is expanded.
@@ -137,14 +137,14 @@ public:
* @internal
* Outputs the group data in XML
*/
- const QDomElement toXML();
+ const TQDomElement toXML();
/**
* @internal
* Loads the group data from XML
*/
- bool fromXML( const QDomElement &data );
+ bool fromXML( const TQDomElement &data );
@@ -160,7 +160,7 @@ signals:
/**
* \brief Emitted when the group has been renamed
*/
- void displayNameChanged( Kopete::Group *group , const QString &oldName );
+ void displayNameChanged( Kopete::Group *group , const TQString &oldName );
private slots:
@@ -177,7 +177,7 @@ private:
/**
* @internal used to get reachabe contact to send message to thom.
*/
- QPtrList<MetaContact> onlineMembers() const;
+ TQPtrList<MetaContact> onlineMembers() const;
};
} //END namespace Kopete