Summary: | Creating remote project is broken | ||
---|---|---|---|
Product: | [Unmaintained] quanta | Reporter: | Dik Takken <kde> |
Component: | general | Assignee: | András Manţia <amantia> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Dik Takken
2004-01-21 21:17:21 UTC
CVS commit by amantia: Now this was a stupid bug (and reported for 3.2.0 rc1). Remote project creation should work now. CCMAIL: 73172-done@bugs.kde.org M +1 -0 ChangeLog 1.205.2.16 M +1 -1 quanta/project/project.cpp 1.136.2.3 --- quanta/ChangeLog #1.205.2.15:1.205.2.16 @@ -23,4 +23,5 @@ - fix saving of files with fish:// [#74716] - make insertion and renaming in the project tree view work as expected + - fix creation of remote projects [#73172] - various parsing fixes - performance: --- quanta/quanta/project/project.cpp #1.136.2.2:1.136.2.3 @@ -1089,5 +1089,5 @@ void Project::slotAcceptCreateProject() baseURL.setProtocol(png->comboProtocol->currentText()); if (baseURL.protocol() == i18n("Local")) baseURL.setProtocol("file"); - QuantaCommon::setUrl(baseURL, basePath); + baseURL.setPath(basePath); baseURL.adjustPath(1); if (!baseURL.path().startsWith("/")) baseURL.setPath("/"+baseURL.path()); |