Summary: | quanta encodes "#" reference symbol of .docrc files | ||
---|---|---|---|
Product: | [Unmaintained] quanta | Reporter: | Johannes Orth <projectphoenix> |
Component: | general | Assignee: | András Manţia <amantia> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Gentoo Packages | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Johannes Orth
2003-12-13 22:39:04 UTC
CVS commit by amantia: Fix opening of documentation pages with references [#70345] CCMAIL: 70345-done@bugs.kde.org M +1 -0 ChangeLog 1.205.2.17 M +1 -2 quanta/quanta.cpp 1.414.2.8 --- quanta/ChangeLog #1.205.2.16:1.205.2.17 @@ -23,4 +23,5 @@ - fix saving of files with fish:// [#74716] - make insertion and renaming in the project tree view work as expected + - fix opening of documentation pages with references [#70345] - fix creation of remote projects [#73172] - various parsing fixes --- quanta/quanta/quanta.cpp #1.414.2.7:1.414.2.8 @@ -1665,6 +1665,5 @@ void QuantaApp::selectArea(int line1, in void QuantaApp::openDoc(const QString& url) { - KURL u; - u.setPath(url); + KURL u("file:"+url); if (u == m_htmlPartDoc->url()) return; |