# HG changeset patch # User Torsten # Date 1544462518 -3600 # Node ID c2137ac45dd9d3ec948762156050a319c362d587 # Parent 05e8cc761c140d9d806a0324e563ac14ac945f40 fix build failure with Qt4.8 (bug #55191) * documentation (update_history): do not use option QUrl::FullyEncoded, which is not required and not exisiting in Qt 4 diff -r 05e8cc761c14 -r c2137ac45dd9 libgui/src/documentation.cc --- a/libgui/src/documentation.cc Sun Dec 09 22:53:54 2018 -0800 +++ b/libgui/src/documentation.cc Mon Dec 10 18:21:58 2018 +0100 @@ -724,7 +724,7 @@ // Sinve the title only contains the section name and not the // specific anchor, extract the latter from the url and append // it to the title - QString url = m_doc_browser->historyUrl (prev_next*(i+1)).toString (QUrl::FullyEncoded); + QString url = m_doc_browser->historyUrl (prev_next*(i+1)).toString (); if (url.contains ('#')) { // Get the anchor from the url