Allen Winter
80909a85fa
Cleanup kDebug/kWarning/kError():
...
+ No longer pass the debug area
+ Don't hard code the method name
+ Remove endls
svn path=/trunk/KDE/kdepim/; revision=966226
17 years ago
Thomas McGuire
d2b89afcf9
Remove many superflous function names in kDebug statements.
...
Remove some tabs
svn path=/trunk/KDE/kdepim/; revision=785955
18 years ago
Frank Osterfeld
d1dfa77976
merge changes from enterprise
...
svn path=/branches/work/~osterfeld/enterprise/kdepim/; revision=706828
19 years ago
Daniel Molkentin
94a38cea12
major parts of the endl cleanups.
...
svn path=/trunk/KDE/kdepim/; revision=695704
19 years ago
Laurent Montel
a2849e0f7f
Not necessary
...
svn path=/trunk/KDE/kdepim/; revision=685626
19 years ago
David Faure
8270ad07db
Cleaning up the proko2 branch mess (that I originally created); this will require a few commits and a temporary branch.
...
svn path=/branches/kdepim/proko2-full/kdepim/; revision=541169
20 years ago
Laurent Montel
691967fab7
deprecated--
...
fix some compile error
svn path=/trunk/KDE/kdepim/; revision=506351
20 years ago
Till Adam
4e28cefc4a
Move KMail::nextPrime() into kmglobal.h, thereby making KMDict a pure
...
implementation detail of KMMsgDict. Add apidox for it (KMDict).
svn path=/trunk/KDE/kdepim/; revision=428775
21 years ago
David Faure
a30c07433f
Less debug output. I wonder how many people knew that
...
kmail: selection == 42(1)
kmail: updateMsg == 71(1)
kmail: set_folder == 81(1)
was timing information... Enable DEBUG_TIMING in kmdebug.h to see it again.
svn path=/trunk/kdepim/; revision=314402
22 years ago
Till Adam
d035694d1f
Speed up dimap syncing some more by using a dict instead of a list to
...
store uids of messages on the server, because all we do is check for
existance. Move the nextPrime() utility function to somewhere public and
put it in the KMail namespace.
svn path=/trunk/kdepim/; revision=300663
22 years ago
Till Adam
14d84f1f22
Don't hardcode the size of the msgdict but gather intelligence as to the
...
total number of messages and store it in a secret config key and then
retrieve that on the next invocation of KMail and use it to initialize
the dict size to nextPrime( lastSizeHint * 1.1 ).
The fancy math is due to I. Kloecker, who is reportedly good with numbers,
so I'll just take his word for it. ;)
svn path=/trunk/kdepim/; revision=299657
22 years ago
Till Adam
a67ca592b8
Add an insert() method to the home brewn hash class used for the global
...
msg dict. Unlike replace() it does not check for already existing entries
with the same serial number, as the calling code ensures that is not
the case. Makes KMail start a bit faster.
svn path=/trunk/kdepim/; revision=299586
22 years ago
Marc Mutz
c4df6a1a84
Add <config.h> to all .cpp files as in aegypten_branch we really
...
depend on th values there.
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
Changes done by this script:
for i in *.cpp; do
if ! grep -q '<config.h>' $i; then
echo $i
fi
done | xargs -n1 perl -pi\~ -e \
'if ( /#include/ && !$first ) {
$_ = "#ifdef HAVE_CONFIG_H\n#include <config.h>\n#endif\n\n" . $_;
$first=1;
}'
svn path=/trunk/kdepim/; revision=278891
23 years ago
Stephan Kulow
e5c1f372cc
- delete mVecs;
...
+ delete [] mVecs;
svn path=/trunk/kdenetwork/kmail/; revision=137459
24 years ago
Michael Haeckel
cd2280cb20
Use our own hash table instead of QDict. This is much faster and requires
...
much less memory.
Patch by Ronen Tzur <rtzur@shani.net>
svn path=/trunk/kdenetwork/kmail/; revision=129822
25 years ago