00001 /* -*- mode: C++ ; c-file-style: "stroustrup" -*- ***************************** 00002 * Qwt Widget Library 00003 * Copyright (C) 1997 Josef Wilgen 00004 * Copyright (C) 2002 Uwe Rathmann 00005 * 00006 * This library is free software; you can redistribute it and/or 00007 * modify it under the terms of the Qwt License, Version 1.0 00008 *****************************************************************************/ 00009 00010 #include "qwt_plot.h" 00011 00018 void QwtPlot::applyProperties( const QString & /* xmlDocument */ ) 00019 { 00020 #if 0 00021 // Temporary dummy code, for designer tests 00022 setTitle( xmlDocument ); 00023 replot(); 00024 #endif 00025 } 00026 00034 QString QwtPlot::grabProperties() const 00035 { 00036 #if 0 00037 // Temporary dummy code, for designer tests 00038 return title().text(); 00039 #else 00040 return QString::null; 00041 #endif 00042 }