~ubuntu-branches/ubuntu/karmic/psi/karmic

« back to all changes in this revision

Viewing changes to iris/xmpp-core/parser.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2008-04-14 18:57:30 UTC
  • mfrom: (2.1.9 hardy)
  • Revision ID: james.westby@ubuntu.com-20080414185730-528re3zp0m2hdlhi
Tags: 0.11-8
* added CONFIG -= link_prl to .pro files and removed dependencies
  which are made unnecessary by this change
* Fix segfault when closing last chat tab with qt4.4
  (This is from upstream svn, rev. 1101) (Closes: Bug#476122)

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
    it would be nice if Qt had this already.
48
48
*/
49
49
 
50
 
#include"parser.h"
 
50
#include "parser.h"
51
51
 
52
 
#include<qtextcodec.h>
53
 
#include<qptrlist.h>
54
 
#include<string.h>
 
52
#include <qtextcodec.h>
 
53
#include <q3ptrlist.h>
 
54
#include <string.h>
55
55
 
56
56
using namespace XMPP;
57
57
 
544
544
                int depth;
545
545
                QStringList nsnames, nsvalues;
546
546
                QDomElement elem, current;
547
 
                QPtrList<Parser::Event> eventList;
 
547
                Q3PtrList<Parser::Event> eventList;
548
548
                bool needMore;
549
549
        };
550
550
};