- Fix some includes
- Disable Qt3 support and KDE3Support in the CMake file
Now KMail is free of KDE3 and Qt3 support(*), hurray!!
Thanks to everyone who helped porting.
Now, let's party and relax a bit, and afterwards we can start to make things interesting
again by starting the Akonadi port :)
(*) Well, Almost. It still links to Qt3Support, because KGPG has
Qt3Support in its headers.
Also, Qt3Support and KDE3Support are still linked in indirectly
via libkdepim.
svn path=/trunk/KDE/kdepim/; revision=924827
- Fix some paste/drop related things:
- Remove the broken KMComposeWin::slotAttachPNGImageData
- Remove the broken option to paste URLs as text
svn path=/trunk/KDE/kdepim/; revision=912944
that the plain text message part doesn't get a questionmark at that place.
This also fixes the wrong encoding detection in a better way.
- Remove paste() and pasteImage() from KMEditor, they seem unused
svn path=/trunk/KDE/kdepim/; revision=911544
svn+ssh://tmcguire@svn.kde.org/home/kde/branches/KDE/4.1/kdepim
........
r890881 | tmcguire | 2008-11-30 16:42:13 +0100 (Sun, 30 Nov 2008) | 9 lines
Backport r886302 by tmcguire from trunk to the 4.1 branch:
Finally make the questionbox that asks you whether to lose chars or to change encoding
work correctly.
CCBUG: 149309
CCBUG: 145163.
........
svn path=/branches/kdepim/enterprise4/kdepim/; revision=890953
Finally make the questionbox that asks you whether to lose chars or to change encoding
work correctly.
CCBUG: 149309
CCBUG: 145163.
svn path=/branches/KDE/4.1/kdepim/; revision=890881
used for KDE_IS_VERSION macro, but I removed them because we depend on kdelibs trunk anyway
for the dictionary combobox.
This reduces the amount of recompiles when Dirk changes the version for the weekly snapshot.
svn path=/trunk/KDE/kdepim/kontact/plugins/; revision=883759
- Fix quote prefix handling:
- Also highlight custom prefixes correctly.
- Make sure the prefix is saved in a header field so
that highlighting also works when re-opening a draft
Now a quote prefix consisting of the sender's initals is
highlighted correctly again.
svn path=/trunk/KDE/kdepim/; revision=859109
- Make the custom color option for misspelled words work again
- When not using custom colors, use the default color for the HTML
status bar and the signed/encrypted labels again.
svn path=/trunk/KDE/kdepim/; revision=837684
svn+ssh://tmcguire@svn.kde.org/home/kde/branches/kdepim/enterprise4/kdepim
........
r813234 | vkrause | 2008-05-27 11:25:21 +0200 (Tue, 27 May 2008) | 3 lines
Make sure the folder is still open for the setStatus() call. This fixes
a crash while refreshing the DIMAP cache of a groupware sub-folder.
........
r813336 | vkrause | 2008-05-27 14:47:56 +0200 (Tue, 27 May 2008) | 3 lines
Prevent writing the sqlite index while the folder is closed and thus the
internal message list is empty.
........
r813759 | vkrause | 2008-05-28 19:12:22 +0200 (Wed, 28 May 2008) | 8 lines
Make sure we re-open the current folder after an forced close triggered
by FolderStorage::expunge().
This fixes a crash when switching between Kontact parts during a DIMAP
cache refresh. Also, the header view is now updated again during the
refresh.
Might help with Kolab issue 2697.
........
r816897 | staniek | 2008-06-04 23:57:59 +0200 (Wed, 04 Jun 2008) | 2 lines
SVN_SILENT proper filename
........
r817156 | staniek | 2008-06-05 13:58:28 +0200 (Thu, 05 Jun 2008) | 4 lines
Avoid implicit cast of -1 value (when "maximumAttachmentSize" is undefined) to uint.
This worked only by accident.
........
r817345 | tilladam | 2008-06-05 22:23:34 +0200 (Thu, 05 Jun 2008) | 2 lines
Disable the gnupg log watcher action in KMail on Windows, it's not available there.
........
r819078 | staniek | 2008-06-10 17:01:55 +0200 (Tue, 10 Jun 2008) | 10 lines
Fix positioning of the recipients editor;
do not move the child window when the parent (composer) window is moved
(unless the child looks like a popup, moving it is rather unexpected by users).
Avoid hiding parts of the window (needed especially when not using KWin),
so this is mostly Windows and MacOSX fix.
(reviewed)
........
r820276 | staniek | 2008-06-13 20:11:07 +0200 (Fri, 13 Jun 2008) | 4 lines
-better checks for results of QDialog::exec()
-better way to choose root dir path
........
r820278 | staniek | 2008-06-13 20:11:49 +0200 (Fri, 13 Jun 2008) | 2 lines
attach only if user accepted the file dialog
........
svn path=/trunk/KDE/kdepim/; revision=822563
- Decouple quote highlighting from spell highlighting, now
quote highlighting works again when spellchecking is disabled.
Unfortunatley, this is a bit hacky, as the methods from KTextEdit
could not be reused, because they weren't virtual. KMeditor hides
spellcheck-related methods inherited from KTextEdit and implements
its own, properly working ones.
- Move more spellcheck code into KMeditor
- Many bugfixes related to spelling
- In KMail, sync languages used for spelling correctly between the
highlighter, the config dialog and the spell dialog. This needs
kdelibs 4.0.67 to work properly.
Also, spell checking in HTML mode now works, but again, you need an
updated kdelibs.
BUG: 79681
BUG: 110835
BUG: 126361
FEATURE: 141377
svn path=/trunk/KDE/kdepim/knode/; revision=785309
- Move some of the HTML mode handling into KMeditor, remove
duplicated code elsewhere
- Add some more api dox to KMeditor
- Don't enable HTML mode by default
- Fix fixed font option
- Fix lists - they can now be removed again and the combobox is properly
updated
- Fix incorrect missing attachment detection
- Remove and move around some other stuff
- Move init() into the private class of KMeditor
- Some style/kdebug fixes
svn path=/trunk/KDE/kdepim/; revision=783837
even if it is a HTML signature.
Changes to KMeditor:
- Add new functions: cleanWhitespace() and replaceSignature(...) + helper functions for those
- Remove some unused virtual functions
- Remove a unused variable
- Small style fixes
- Rename parent to q, as this is the standard
- Small fixes for insertSignature
Changes to KMail:
- Use the new functions of KMeditor and remove own implementations
Changes to KNode
- Follow KMeditor change
Still TODO:
- Move the HTML mode mess completely into KMeditor instead of having
3 different implementations in KMeditor, KMComposeWin and KMCompoerEditor
- Fix the highlighter
BUG: 137324
svn path=/trunk/KDE/kdepim/knode/; revision=781424
- change to htmlmode when pasting html and the html toolbar is present
- set editor textcolor to black when changing to textmode
- change html to text when user turns the html toolbar off
svn path=/trunk/KDE/kdepim/; revision=747029
- Fix inconsistent identation, whitespace and unused variable warnings
introduced with the recent HTML work
SVN_SILENT
CCMAIL: yez@familieschepers.nl
svn path=/trunk/KDE/kdepim/; revision=745703