author | dwmw2 <dwmw2> | 2002-05-09 14:29:57 (UTC) |
---|---|---|
committer | dwmw2 <dwmw2> | 2002-05-09 14:29:57 (UTC) |
commit | 2ba0a18680b3dc6eb0a952977c38fefda34eefa6 (patch) (side-by-side diff) | |
tree | 2c57b7bdf73756b026962ec35a18369f470cef25 | |
parent | 2a21c7fdce37f76d47926b4d326ad0ab638f744b (diff) | |
download | opie-2ba0a18680b3dc6eb0a952977c38fefda34eefa6.zip opie-2ba0a18680b3dc6eb0a952977c38fefda34eefa6.tar.gz opie-2ba0a18680b3dc6eb0a952977c38fefda34eefa6.tar.bz2 |
Remove #include <iostream> which pulled in libstdc++.
-rw-r--r-- | core/pim/todo/todotable.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/pim/todo/todotable.cpp b/core/pim/todo/todotable.cpp index 2389cdd..877308a 100644 --- a/core/pim/todo/todotable.cpp +++ b/core/pim/todo/todotable.cpp @@ -22,49 +22,48 @@ #include "todotable.h" #include <opie/tododb.h> #include <opie/xmltree.h> #include <qpe/categoryselect.h> #include <qpe/xmlreader.h> #include <qasciidict.h> #include <qcombobox.h> #include <qfile.h> #include <qpainter.h> #include <qtextcodec.h> #include <qtimer.h> #include <qdatetime.h> #include <qtextstream.h> #include <qcursor.h> #include <qregexp.h> #include <errno.h> #include <stdlib.h> #include <stdio.h> -#include <iostream> using namespace Opie; namespace { static bool taskCompare( const ToDoEvent &task, const QRegExp &r, int category ); static QString journalFileName(); static ToDoEvent xmlToEvent( XMLElement *ev ); } CheckItem::CheckItem( QTable *t, const QString &key ) : QTableItem( t, Never, "" ), checked( FALSE ), sortKey( key ) { } QString CheckItem::key() const { return sortKey; } void CheckItem::setChecked( bool b ) { checked = b; table()->updateCell( row(), col() ); } |