the encoding does not work in some strange cases and needs to be set to a
different encoding and back.
svn path=/trunk/kdenetwork/kmail/; revision=93123
It's causing problems again, when a new message is chosen in the list
of headers it isn't always shown in the reader window.
svn path=/trunk/kdenetwork/kmail/; revision=92927
does not always cause the message to be shown problem.
The next time this happens to someone can they tell me whether the
following code gets hit?
void KMReaderWin::setMsg(KMMessage* aMsg, bool force)
{
+ if (aMsg)
+ kdDebug() << aMsg->subject() << " " << aMsg->fromStrip() << endl;
+
// If not forced and there is aMsg and aMsg is same as mMsg then return
if (!force && aMsg && mMsg == aMsg)
return;
+ kdDebug() << "Not equal" << endl;
+
svn path=/trunk/kdenetwork/kmail/; revision=92194
Now only the scroll bar area flickers and (for reasons I don't fully
understand) only when switching from a message short enough to not show
any vertical scrollbar to another message.
I hate flicker.
svn path=/trunk/kdenetwork/kmail/; revision=92071
- the wheel-scrolling bug
- sets the focus properly in some dialogs
- makes the KAB dialog not show the "select-dialog" when there's nothing to
select
- uses a KURLRequester for the signature lineedit
- shows a busy pointer when closing the config-dialog
- sets the focus properly and positions the cursor nicely when replying to a
mail
svn path=/trunk/kdenetwork/kmail/; revision=88692
Patch by Jason Stephenson <panda@mis.net>
- Remove information about not existing folder from the config file.
Especially useful for IMAP folders. That just made my kmailrc 90% smaller.
- Mention a few more features on the about page.
svn path=/trunk/kdenetwork/kmail/; revision=86724
Michael, adding the version number with .arg(KMAIL_VERSION)
should be okay? Or are there any problems with the encoding
for non-latin charsets?
svn path=/trunk/kdenetwork/kmail/; revision=86694
diff -u -3 -p -r1.240 kmreaderwin.cpp
--- kmreaderwin.cpp 2001/02/07 17:11:55 1.240
+++ kmreaderwin.cpp 2001/02/09 14:09:04
@@ -455,6 +455,7 @@ void KMReaderWin::displayAboutPage()
mViewer->begin(location);
QTextCodec *codec = QTextCodec::codecForName(KGlobal::locale()->charset());
if (codec) mViewer->setCharset(codec->name(), true);
+ else mViewer->setCharset(KGlobal::locale()->charset(), true);
mViewer->write(content.arg(
i18n("<h2>Welcome to KMail 1.2</h2><p>KMail is an email client for the K "
"Desktop Environment. It is designed to be fully compatible with Internet "
svn path=/trunk/kdenetwork/kmail/; revision=82058
Sorry for not waiting until the patch is reviewed. I don't know when core-devel
comes to live again and how long it takes until someone takes the time to
review it.
Since the release is waiting for that and I was asked to do it as quickly as
possible I commit it now.
svn path=/trunk/kdenetwork/kmail/; revision=81737
Support for shift_jis (QT only knows the name sjis)
Better support for iso-2022-jp. This format uses the ESC character to show
that the following 7bit text is encoded. These ESC characters made a few
problems throughout KMail's code.
Based on patch by toyohiro@ksmplus.com.
svn path=/trunk/kdenetwork/kmail/; revision=80981
work, since the font dialog returns also the foundaries of the fonts.
We use KConfig::readFontEntry instead of our own functions now.
-> All upgraders have to configure their fonts again :-)
svn path=/trunk/kdenetwork/kmail/; revision=80074
window or if it is not updated, because it is a dublicate of the previos one.
Don't crash, when replying to a message that was copied to another folder
before.
svn path=/trunk/kdenetwork/kmail/; revision=75976