Submitted by: eseidel
Reviewed by: mjs
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@9610
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2005-07-07 Eric Seidel <eseidel@apple.com>
+
+ Reviewed by mjs.
+
+ * kwq/KWQPtrDict.h: Additions for KDOM
+ (QPtrDictIterator::operator()): essentially post-increment.
+ http://bugzilla.opendarwin.org/show_bug.cgi?id=3849
+
2005-07-07 Eric Seidel <eseidel@apple.com>
Reviewed by mjs.
T* toFirst() { return (T*)(impl.toFirst()); }
+ T *operator()() { T *ret = (T *)impl.current(); ++impl; return ret; }
T *operator++() { return (T *)++impl; }
private: