Bug 249007

Summary: Encoding errors in KOrganizer
Product: [Applications] korganizer Reporter: Sascha L. Teichmann <sascha.teichmann>
Component: generalAssignee: Sergio Martins <smartins>
Status: RESOLVED FIXED    
Severity: normal CC: fedotov.i.f, smartins
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Unlisted Binaries   
OS: Linux   
Latest Commit: Version Fixed In:
Attachments: Screenshot of the encoding errors in KOrg

Description Sascha L. Teichmann 2010-08-25 16:33:00 UTC
Version:           unspecified
OS:                Linux

$ dpkg -s korganizer | grep Version
Version: 4:4.5~e5.20100820.1165966-kk1.1167412

If an event is entered in KOrganizer (E5 build) containing
Umlauts they are displayed with encoding errors.

Reproducible: Always
Comment 1 Sascha L. Teichmann 2010-08-25 16:36:35 UTC
Created attachment 50942 [details]
Screenshot of the encoding errors in KOrg

See screenshot
Comment 2 Sergio Martins 2010-09-10 02:02:00 UTC
SVN commit 1173657 by smartins:

Fix encoding problems.

In the call to: mFormat.fromString( data.readAll() ):

- data.readAll() returns a QByteArray with UTF-8 content.
- fromString receives a QString.
- ctor QString( const QByteArray & ) is called, which assumes the buffer is latin1.

BUG: 249007

 M  +1 -1      akonadi_serializer_kcalcore.cpp  


WebSVN link: http://websvn.kde.org/?view=rev&revision=1173657