| Summary: | "START" and "NUM" in KST file attached to ELOG request | ||
|---|---|---|---|
| Product: | [Applications] kst | Reporter: | Marc-Antoine Miville-Deschenes <mamd> |
| Component: | general | Assignee: | Andrew Walker <arwalker> |
| Status: | RESOLVED FIXED | ||
| Severity: | wishlist | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.x | ||
| Target Milestone: | --- | ||
| Platform: | Fink Packages | ||
| OS: | Other | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Marc-Antoine Miville-Deschenes
2004-10-07 22:26:36 UTC
CVS commit by arwalker: When saving a .kst file from the ELOG extension save the abolsute vector position, rather than any offset positions. CCMAIL: 90933-done@bugs.kde.org M +4 -4 kstdoc.cpp 1.127 M +2 -2 kstdoc.h 1.35 M +82 -67 kstrvector.cpp 1.64 M +1 -1 kstrvector.h 1.26 CVS commit by arwalker: Also for 90933. CCMAIL: 90933@bugs.kde.org M +1 -1 kst.cpp 1.248 --- kdeextragear-2/kst/kst/kst.cpp #1.247:1.248 @@ -292,5 +292,5 @@ void KstApp::customEvent(QCustomEvent *p QTextStream *pTextStream = (QTextStream*)pEvent->data(); if (document()) { - document()->saveDocument(*pTextStream); + document()->saveDocument(*pTextStream, true); } } else if (pEvent->type() == KstELOGCaptureEvent) { |