Re: Review Request 111951: Fix where some file type associations can't be changed anymore

2013-08-20 Thread Mathias Tillman
--- This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/111951/#review38191 --- There have been a few users reporting this bug since the

Re: Review Request 112122: Respect user's 12/24 h preference in System Settings

2013-08-20 Thread Commit Hook
--- This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/112122/ --- (Updated Aug. 20, 2013, 10:33 a.m.) Status -- This change has been

Re: Review Request 112122: Respect user's 12/24 h preference in System Settings

2013-08-20 Thread Commit Hook
--- This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/112122/#review38195 --- This review has been submitted with commit

Re: Review Request 112144: Smal KXmlGuiWindow documentation improvements

2013-08-20 Thread David Faure
On Aug. 19, 2013, 5:06 p.m., David Faure wrote: This patch looks OK. Deprecating it, I'm not sure. Please investigate porting some kde4 apps from createGUI to setupGUI to see what's actually involved in that. Albert Astals Cid wrote: This is what is involved. Less code, less

Review Request 112173: Do not use QFileInfo to obtain the size of a symlink in kio_trash

2013-08-20 Thread Dawit Alemayehu
--- This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/112173/ --- Review request for KDE Runtime, David Faure and Tobias Koenig.

Re: Review Request 112173: Do not use QFileInfo to obtain the size of a symlink in kio_trash

2013-08-20 Thread David Faure
--- This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r/112173/#review38210 --- QFileInfo is more portable. Why not just write ||

KF5 Update Meeting Minutes 2013-w34

2013-08-20 Thread Kevin Ottens
Hello everyone, This is the minutes of the Week 34 KF5 meeting. As usual it has been held on #kde-devel at 4pm Paris time. Were present: afiestas, apol, dfaure, mgraesslin, sebas, shadeslayer, vHanda, wojtask9 and myself. Announcement: * kdelibs splitting tasks open again, effective

Re: Review Request 112144: Smal KXmlGuiWindow documentation improvements

2013-08-20 Thread Albert Astals Cid
On Aug. 19, 2013, 5:06 p.m., David Faure wrote: This patch looks OK. Deprecating it, I'm not sure. Please investigate porting some kde4 apps from createGUI to setupGUI to see what's actually involved in that. Albert Astals Cid wrote: This is what is involved. Less code, less

Re: Proposed schedule for 4.12

2013-08-20 Thread Albert Astals Cid
El Dissabte, 3 d'agost de 2013, a les 20:19:48, Albert Astals Cid va escriure: Please let's try to keep this discussion in release-team, I'm just CC'ing k-c- d because Alex's discussion about changing the release happened there. At the Release Team BoF at Akademy I was tasked to come up with

Re: Help solving an IMAP SSL bug

2013-08-20 Thread Richard Moore
On 19 August 2013 10:58, Daniel Vrátil dvra...@redhat.com wrote: Because it's a socket error KSslSocket will emit socketError() and IMAP resource will try to reconnect. The interesting part here is, that calling QAbstractSocket::disconnect() will emit the error again (probably it's trying to

Re: Backporting Clang support to KDE 4.11 FindKDE4Internal.cmake

2013-08-20 Thread Milian Wolff
On Sunday 18 August 2013 02:38:04 Raphael Kubo da Costa wrote: Milian Wolff m...@milianw.de writes: Btw, is there still no BSD using clang by default to build KDE? How did they manage to get this to work without the patch? FreeBSD's the first BSD to move towards having clang as the

Re: Review Request 112173: Do not use QFileInfo to obtain the size of a symlink in kio_trash

2013-08-20 Thread Dawit Alemayehu
On Aug. 20, 2013, 1:29 p.m., David Faure wrote: QFileInfo is more portable. Why not just write || info.isSymlink() in the first if? I know QFileInfo is more portable. I use it exclusively whenever I can, but the logic it uses to calculate the size of a symlink will not work for this use