| Summary: | Vectors created from the command line don't make it to the vector list | ||
|---|---|---|---|
| Product: | [Applications] kst | Reporter: | Netterfield <netterfield> |
| Component: | general | Assignee: | kst |
| Status: | RESOLVED FIXED | ||
| Severity: | critical | ||
| Priority: | VHI | ||
| Version First Reported In: | 1.x | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | patch to make vectors always appear from the command line | ||
|
Description
Netterfield
2006-09-22 17:32:30 UTC
Created attachment 17880 [details]
patch to make vectors always appear from the command line
SVN commit 587390 by netterfield:
Always remember the vector.
CCBUG: 134501
M +3 -0 main.cpp
--- trunk/extragear/graphics/kst/src/kst/main.cpp #587389:587390
@@ -278,7 +278,10 @@
startupErrors.append(i18n("Failed to create vector '%1' from file '%2'.").arg(field).arg(file->fileName()));
V = 0L;
}
+ } else {
+ KST::addVectorToList(V);
}
+
return V;
}
Is this fixed with the patch above? Yes |