123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #include "qwt_plot.h"
- void QwtPlot::applyProperties( const QString & )
- {
- #if 0
-
- setTitle( xmlDocument );
- replot();
- #endif
- }
- QString QwtPlot::grabProperties() const
- {
- #if 0
-
- return title().text();
- #else
- return QString::null;
- #endif
- }
|