[Kst] extragear/graphics/kst/kst
George Staikos
staikos at kde.org
Sun Oct 30 19:10:30 CET 2005
SVN commit 475821 by staikos:
remove data dialog
M +0 -8 kstwidgets.cpp
--- trunk/extragear/graphics/kst/kst/kstwidgets.cpp #475820:475821
@@ -5,7 +5,6 @@
#include "curveplacementwidget.h"
#include "datarangewidget.h"
#include "fftoptionswidget.h"
-#include "kstdatadialog.h"
#include "matrixselector.h"
#include "plotlistbox.h"
#include "scalarselector.h"
@@ -24,7 +23,6 @@
QStringList rc;
rc += "CurveAppearanceWidget";
rc += "CurvePlacementWidget";
- rc += "KstDataDialog";
rc += "KstDataRange";
rc += "KstFFTOptions";
rc += "MatrixSelector";
@@ -41,8 +39,6 @@
}
virtual bool isContainer(const QString &key) const {
- if (key == QString::fromLatin1("KstDataDialog"))
- return true;
return false;
}
@@ -67,8 +63,6 @@
return "datarangewidget.h";
if (key == QString::fromLatin1("PlotListBox"))
return "plotlistbox.h";
- if (key == QString::fromLatin1("KstDataDialog"))
- return "kstdatadialog.h";
return QString::null;
}
@@ -82,8 +76,6 @@
};
QWidget *KstWidgets::create(const QString &key, QWidget *parent, const char *name) {
- if (key == QString::fromLatin1("KstDataDialog"))
- return new KstDataDialog(parent, name);
if (key == QString::fromLatin1("CurveAppearanceWidget"))
return new CurveAppearanceWidget(parent, name);
if (key == QString::fromLatin1("ScalarSelector"))
More information about the Kst
mailing list