Merged in f5soh/librepilot/update_credits (pull request #529)
[librepilot.git] / ground / gcs / src / libs / qwt / src / qwt_plot_xml.cpp
blob5332a78f4f262426e373ebb3949d64131f073ee8
1 /* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
2 * Qwt Widget Library
3 * Copyright (C) 1997 Josef Wilgen
4 * Copyright (C) 2002 Uwe Rathmann
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the Qwt License, Version 1.0
8 *****************************************************************************/
10 #include "qwt_plot.h"
12 /*!
13 This method is intended for manipulating the plot widget
14 from a specific editor in the Qwt designer plugin.
16 \warning The plot editor has never been implemented.
18 void QwtPlot::applyProperties( const QString & /* xmlDocument */ )
20 #if 0
21 // Temporary dummy code, for designer tests
22 setTitle( xmlDocument );
23 replot();
24 #endif
27 /*!
28 This method is intended for manipulating the plot widget
29 from a specific editor in the Qwt designer plugin.
31 \return QString::null
32 \warning The plot editor has never been implemented.
34 QString QwtPlot::grabProperties() const
36 #if 0
37 // Temporary dummy code, for designer tests
38 return title().text();
39 #else
40 return QString::null;
41 #endif