svn+ssh://ahartmetz@svn.kde.org/home/kde/branches/kdepim/enterprise/kdepim
........
r728017 | tilladam | 2007-10-22 09:30:48 +0200 (Mo, 22 Okt 2007) | 6 lines
Add a button to the quicksearch which opens up a full search based on the current
quick search parameters. Make opening a search via other means (keyboard shortcut)
honor the current quicksearch as well.
Prokde35-z Item 39
........
r731357 | tilladam | 2007-10-31 15:08:32 +0100 (Mi, 31 Okt 2007) | 3 lines
Search in the full mail by default, not the subject. That more closely reflects
what the quicksearch does.
........
svn path=/trunk/KDE/kdepim/; revision=764483
svn+ssh://tilladam@svn.kde.org/home/kde/branches/kdepim/enterprise/kdepim
........
r738629 | tilladam | 2007-11-19 11:17:44 +0100 (Mon, 19 Nov 2007) | 6 lines
Use better strings to describe the pseudo headers in searches and filters
(e.g. <message> -> Full Message) and fix buglets uncovered by english now
being != internal strings.
Prokde35-z Item 36.
........
svn path=/branches/work/kdab-post-4.0/kdepim/; revision=738630
(e.g. <message> -> Full Message) and fix buglets uncovered by english now
being != internal strings.
Prokde35-z Item 36.
svn path=/branches/kdepim/enterprise/kdepim/; revision=738629
quick search parameters. Make opening a search via other means (keyboard shortcut)
honor the current quicksearch as well.
Prokde35-z Item 39
svn path=/branches/kdepim/enterprise/kdepim/; revision=728017
for the new kDebug/kError/kWarning/kFatal syntax.
You can use the following command to find 'old' code:
egrep -r -A 5 '(kDebug|kError|kWarning|kFatal).*' * | grep -v ".svn" | grep "<< *endl;"
svn path=/trunk/KDE/kdepim/; revision=695781
I used my kdesdk/scripts/qt4/convert-qgridlayout.pl and kdesdk/scripts/qt4/convert-qboxlayout.pl scripts for this. Apart from one instance (where the params were commented out), no manual intervention was needed and everything worked like a charm...
What still needs to be done is to replace all Q*Layout(QLayout*parent) constructors by Q*Layout(); parent->insertLayout(..); calls. This can't be automated since it's impossible to detect whether the parent object is a QWidget* or a QLayout*. At best one can parst the compiler warning and just replace in those lines that through a deprecated warning...
svn path=/trunk/KDE/kdepim/; revision=533942
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
* For the time being, this is only fixed on filter criteria, the fix on
filter Action is a hack, I'll wait for comments.
svn path=/trunk/kdepim/; revision=403561
changeItem that takes a QString when currentText is a QCString and
there's also an overload that takes a QPixmap
svn path=/trunk/kdepim/; revision=342133
and <body> searches not working on online imap folders.
remove the <body> and <message> fields from the 'rule'
comboboxes when an online imap folder is selected for searching.
Unless the 'search in all local folders' check box is checked in
which case <body> and <message> searching is always available, as
is sensible.
It would have been nicer to disable the <body> and <message> items
rather than hide/remove them but I can't see an easy way of doing
that.
This commit should be reverted once support for <message> and <body>
searching is implemented for online imap folders.
There are also some corner cases left. e.g. the user can explicitly
type <message> or <body> into the rule field even when an imap folder is
selected.
svn path=/trunk/kdepim/; revision=328587
- The Edit... (regular expression) button is now hidden instead of disabled which makes IMO more sense.
- Use KDialog::spacingHint() instead of hardcoded value of 4.
svn path=/trunk/kdepim/; revision=290263