| Summary: | working directory for actions | ||
|---|---|---|---|
| Product: | [Unmaintained] quanta | Reporter: | Roland Seuhs <roland> |
| Component: | general | Assignee: | András Manţia <amantia> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 2.0.1 | ||
| Target Milestone: | --- | ||
| Platform: | openSUSE | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Roland Seuhs
2001-12-23 13:44:05 UTC
Subject: quanta/quanta/toolbar CVS commit by amantia: Use the project base directory as the working directory for script actions. Fixes #36415. Wondering, why I haven't fixed it before... CCMAIL: 36415-done@bugs.kde.org M +2 -1 tagaction.cpp 1.44 --- quanta/quanta/toolbar/tagaction.cpp #1.43:1.44 @@ -139,5 +139,6 @@ void TagAction::insertTag(bool inputFrom { KProcess *proc = new KProcess(); - proc ->clearArguments(); + proc->clearArguments(); + proc->setWorkingDirectory(quantaApp->projectBaseURL().path()); QDomElement script = tag.namedItem("script").toElement(); |