QMAX/QMIN -> qMax/qMin
I don't know what to do about Q_LONG and Q_ULONG because of the following code in qglobal.h:
#if defined(Q_OS_WIN64)
typedef __int64 Q_LONG; /* word up to 64 bit signed */
typedef unsigned __int64 Q_ULONG; /* word up to 64 bit unsigned */
#else
typedef long Q_LONG; /* word up to 64 bit signed */
typedef unsigned long Q_ULONG; /* word up to 64 bit unsigned */
#endif
Should I simply convert to (unsigned) long?
svn path=/trunk/KDE/kdepim/; revision=468393
Set text-index/enabled=true in kmailrc to enable
Individual folders can be disabled by setting Folder-*/fulltextIndexDisabled=true in kmailrc
(internals only, gui to come later).
svn path=/branches/KDE/3.5/kdepim/; revision=445644
1) KMMsgDict::instance returns a const KMMsgDict*, so we need to use that type.
2) You can't loop through a const QPtrList, since the next() method is not const, and there is no getNext() const method like it's the case with getFirst() const. I guess a const_cast is the only solution here.
3) Get rid of compiler warnings that the initialization order in the constructors is messed up.
CCMAIL: luis@luispedro.org
svn path=/branches/KDE/3.5/kdepim/; revision=442617