MCPcopy Create free account
hub / github.com/KDAB/KDChart / Widget

Method Widget

src/KDChart/KDChartWidget.cpp:65–72  ·  view source on GitHub ↗

* Constructor. Creates a new widget with all data initialized empty. * * \param parent the widget parent; passed on to QWidget */

Source from the content-addressed store, hash-verified

63 * \param parent the widget parent; passed on to QWidget
64 */
65Widget::Widget(QWidget *parent)
66 : QWidget(parent)
67 , _d(new Private(this))
68{
69 // as default we have a cartesian coordinate plane ...
70 // ... and a line diagram
71 setType(Line);
72}
73
74/**
75 * Destructor.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected