Merge lp:~bratdaking/backintime/bug-404652 into lp:backintime/1.0

Proposed by Bart de Koning
Status: Merged
Merged at revision: not available
Proposed branch: lp:~bratdaking/backintime/bug-404652
Merge into: lp:backintime/1.0
Diff against target: 23 lines
2 files modified
CHANGES (+1/-0)
kde4/app.py (+1/-1)
To merge this branch: bzr merge lp:~bratdaking/backintime/bug-404652
Reviewer Review Type Date Requested Status
Back In Time Team Pending
Review via email: mp+12974@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Bart de Koning (bratdaking) wrote :

Fixed a small encoding clash -> in KDE KRun expected to get a QString in Ascii encoding, while BiT converted a unicode into utf-8, creating files with weird names when trying to open a file with the KDE GUI.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'CHANGES'
2--- CHANGES 2009-05-27 14:52:37 +0000
3+++ CHANGES 2009-10-07 08:30:27 +0000
4@@ -4,6 +4,7 @@
5 * update Slovak translation (Tomáš Vadina <kyberdev@gmail.com>)
6 * multiple profiles support
7 * GNOME: fix notification
8+* Fix opening german files with external applications in KDE (LP: #404652)
9 * fix small bugs
10
11 Version 0.9.26
12
13=== modified file 'kde4/app.py'
14--- kde4/app.py 2009-06-17 11:23:38 +0000
15+++ kde4/app.py 2009-10-07 08:30:27 +0000
16@@ -779,7 +779,7 @@
17 if model_index is None:
18 return
19
20- rel_path = str( self.list_files_view_sort_filter_proxy.data( model_index ).toString().toUtf8() )
21+ rel_path = str( self.list_files_view_sort_filter_proxy.data( model_index ).toString().toAscii() )
22 if len( rel_path ) <= 0:
23 return
24

Subscribers

People subscribed via source and target branches