Deprecate the DLIST class
This commit is contained in:
parent
2999bcb721
commit
07db846ed4
|
@ -28,7 +28,7 @@
|
|||
|
||||
|
||||
#include <cstdio> // NULL definition.
|
||||
|
||||
#include <wx/defs.h> // wxDEPRECATED_MSG macro
|
||||
|
||||
class EDA_ITEM;
|
||||
|
||||
|
@ -139,7 +139,11 @@ public:
|
|||
* @see DHEAD for additional public functions.
|
||||
*/
|
||||
template <class T>
|
||||
class DLIST : public DHEAD
|
||||
class
|
||||
#if !defined( EESCHEMA ) && !defined( GERBVIEW )
|
||||
wxDEPRECATED_MSG( "DLIST is deprecated, do not use in new code" )
|
||||
#endif
|
||||
DLIST : public DHEAD
|
||||
{
|
||||
public:
|
||||
|
||||
|
|
Loading…
Reference in New Issue