Summary: | "Malformed URL" error when clicking Open button on DCC Status tab. | ||
---|---|---|---|
Product: | [Applications] konversation | Reporter: | Gary Cramblitt <garycramblitt> |
Component: | general | Assignee: | Dario Abatianni <eisfuchs> |
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
Gary Cramblitt
2003-12-21 19:05:02 UTC
Suggested fix in dccpanel.cpp. In function DccPanel::runDcc(), change line new KRun(item->GetFullPath()); to { KURL kurl; QDir dir; kurl.setPath(dir.cleanDirPath(dir.absFilePath(item->getFullPath(), TRUE))); new KRun(kurl); } Committed to CVS by Dario. |