source: ntrip/trunk/BNC/qwt/qwt_plot_xml.cpp@ 9383

Last change on this file since 9383 was 9383, checked in by stoecker, 3 years ago

update to qwt verion 6.1.1 to fix build with newer Qt5

File size: 1.1 KB
Line 
1/* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
2 * Qwt Widget Library
3 * Copyright (C) 1997 Josef Wilgen
4 * Copyright (C) 2002 Uwe Rathmann
5 *
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 *****************************************************************************/
9
10#include "qwt_plot.h"
11
12/*!
13 This method is intended for manipulating the plot widget
14 from a specific editor in the Qwt designer plugin.
15
16 \warning The plot editor has never been implemented.
17*/
18void QwtPlot::applyProperties( const QString & /* xmlDocument */ )
19{
20#if 0
21 // Temporary dummy code, for designer tests
22 setTitle( xmlDocument );
23 replot();
24#endif
25}
26
27/*!
28 This method is intended for manipulating the plot widget
29 from a specific editor in the Qwt designer plugin.
30
31 \return QString()
32 \warning The plot editor has never been implemented.
33*/
34QString QwtPlot::grabProperties() const
35{
36#if 0
37 // Temporary dummy code, for designer tests
38 return title().text();
39#else
40 return QString();
41#endif
42}
Note: See TracBrowser for help on using the repository browser.