View | Details | Raw Unified | Return to bug 8603
Collapse All | Expand All

(-)kdepim-3.5.6/kmail/kmkernel.cpp (-1 / +1 lines)
Lines 1492-1498 Link Here
1492
    KConfigGroupSaver saver(cfg, "Composer");
1492
    KConfigGroupSaver saver(cfg, "Composer");
1493
    if (cfg->readListEntry("pref-charsets").isEmpty())
1493
    if (cfg->readListEntry("pref-charsets").isEmpty())
1494
    {
1494
    {
1495
      cfg->writeEntry("pref-charsets", "us-ascii,iso-8859-1,locale,utf-8");
1495
      cfg->writeEntry("pref-charsets", "locale,us-ascii,iso-8859-1,utf-8");
1496
    }
1496
    }
1497
  }
1497
  }
1498
  readConfig();
1498
  readConfig();
(-)kdepim-3.5.6/kmail/messagecomposer.cpp (+1 lines)
Lines 2056-2061 Link Here
2056
    kdDebug(5006) << "Something is wrong and I can not get a codec." << endl;
2056
    kdDebug(5006) << "Something is wrong and I can not get a codec." << endl;
2057
    textbody = text.local8Bit();
2057
    textbody = text.local8Bit();
2058
  } else {
2058
  } else {
2059
    text=codec->toUnicode(text.latin1(), text.length());
2059
    textbody = codec->fromUnicode( text );
2060
    textbody = codec->fromUnicode( text );
2060
  }
2061
  }
2061
  if (textbody.isNull()) textbody = "";
2062
  if (textbody.isNull()) textbody = "";

Return to bug 8603