| Summary: | Cross power spectrum plugin has useless default values | ||
|---|---|---|---|
| Product: | [Applications] kst | Reporter: | Andrew Walker <arwalker> |
| Component: | general | Assignee: | kst |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.x | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | use kst defaults for fft options | ||
|
Description
Andrew Walker
2007-03-08 20:48:53 UTC
I think we should remove this from the build for 1.4.0, and work on it for 1.4.1. I think there may also be numerical errors. On Thursday 08 March 2007 2:48:54 pm Andrew Walker wrote: [bugs.kde.org quoted mail] The LFI group expressed a request for exactly this plugin so it would be better to work out the bugs for this build. Created attachment 20001 [details]
use kst defaults for fft options
Looks good to me. -- George Staikos KDE Developer http://www.kde.org/ Staikos Computing Services Inc. http://www.staikos.net/ SVN commit 643256 by netterfield:
BUG: 142700
Use kst defaults... reviewed by George.
M +4 -0 crossspectrumdialog_i.cpp
--- trunk/extragear/graphics/kst/src/plugins/crossspectrum/crossspectrumdialog_i.cpp #643255:643256
@@ -48,6 +48,7 @@
#include <vectorselector.h>
#include <kstdefaultnames.h>
#include <kstdataobjectcollection.h>
+#include <kstobjectdefaults.h>
const QString& CrossSpectrumDialogI::defaultTag = KGlobal::staticQString("<Auto Name>");
@@ -268,6 +269,9 @@
_tagName->setText(defaultTag);
_legendText->setText(defaultTag);
+ _w->_fft->_scalar->setCurrentText(QString::number(KST::objectDefaults.fftLen()));
+ _w->_sample->_scalar->setCurrentText(QString::number(KST::objectDefaults.psdFreq()));
+
adjustSize();
resize(minimumSizeHint());
setFixedHeight(height());
|