~ubuntu-branches/ubuntu/utopic/psi/utopic

« back to all changes in this revision

Viewing changes to src/userlist.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2010-02-19 09:37:12 UTC
  • mfrom: (6.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20100219093712-e225xvm1wjcf1cgi
Tags: 0.14-2
* comment out only function which uses va_list to work around build
  problems on armel
* Set Standards-Version to 3.8.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include <qdatetime.h>
26
26
#include <QList>
27
27
#include <QPixmap>
28
 
#include <Q3PtrList>
29
28
#include "xmpp_resource.h"
30
29
#include "xmpp_liverosteritem.h"
31
30
#include "mood.h"
161
160
        AvatarFactory* v_avatarFactory;
162
161
};
163
162
 
164
 
typedef Q3PtrListIterator<UserListItem> UserListIt;
 
163
typedef QListIterator<UserListItem*> UserListIt;
165
164
 
166
 
class UserList : public Q3PtrList<UserListItem>
 
165
class UserList : public QList<UserListItem*>
167
166
{
168
167
public:
169
168
        UserList();