summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/kopetegroup.h
diff options
context:
space:
mode:
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