What does this patch do:
- QComboBox -> KComboBox
- QTabWidget -> KTabWidget
- QLineEdit -> KLineEdit
- QTextEdit -> KTextEdit
- Where KLineEdit is inserted, I explicitly called: setShowClearButton( true )
- Removed in some cases unnecessary includes from header files.
What does this patch not do:
- Fix the ui files
- Fix the QMessageBox -> KMessageBox in kmmessage.cpp I need to have a good
look to the KMessageBox API for that.
- Exhaustive cleanup of unnecessary inclusions.
svn path=/trunk/KDE/kdepim/; revision=862376
r856802 | tmcguire | 2008-09-03 22:13:12 +0200 (Wed, 03 Sep 2008) | 9 lines
Allow translating some of the filter critera for headers, namely
subject, to, from and cc.
I've left the other ones untouched as I think those a raw header fields
and shouldn't be translated.
Topic open for bikeshedding though :)
BUG: 170033
svn path=/branches/kdepim/enterprise4/kdepim/; revision=861141
subject, to, from and cc.
I've left the other ones untouched as I think those a raw header fields
and shouldn't be translated.
Topic open for bikeshedding though :)
BUG: 170033
svn path=/trunk/KDE/kdepim/; revision=856802
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