-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
userevent.cpp didn't include <vector>, but mmlistview.h did although it
doesn't use vector. This was wrong, but these two diffs fix this problem.
Arne
- --
See the stars, they're shining bright
Everything's allright tonight
[--- PGP key FD05BED7 --- http://www.root42.de/ ---]
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.0.7 (GNU/Linux)
iD8DBQE9r/c8zpP3gv0FvtcRAqdEAJsHOa8jXnWG4tW/r6hEJoPOI8ejfgCdGFSy
EbAbXIi+DUuM8q/G5xQKlgo=
=P+qo
-----END PGP SIGNATURE-----
--- mmlistview.h 2002-10-18 13:33:20.000000000 +0200
+++ mmlistview.h 2002-10-18 13:46:32.000000000 +0200
@@ -1,8 +1,7 @@
#ifndef MMBOX_H
#define MMBOX_H
-#include <vector.h>
-#include <list.h>
+#include <list>
#include <qlistview.h>
#include <qtooltip.h>
--- usereventdlg.cpp 2002-10-18 13:49:41.000000000 +0200
+++ usereventdlg.cpp 2002-10-18 13:48:54.000000000 +0200
@@ -23,6 +23,8 @@
#include "config.h"
#endif
+#include <vector>
+
#include <qaccel.h>
#include <qcheckbox.h>
#include <qdatetime.h>
@@ -70,6 +72,8 @@
#include "xpm/chatChangeFg.xpm"
#include "xpm/chatChangeBg.xpm"
+using namespace std;
+
// -----------------------------------------------------------------------------
UserEventCommon::UserEventCommon(CICQDaemon *s, CSignalManager *theSigMan,