Move wxAdv library contents into wxCore
This basically removes the "adv" library, even though it's still preserved for compatibility with user make/project files referring to it. It is done because the distinction between "adv" and "core" was never really clear (e.g. why wxTreeCtrl was in core but wxTreeListCtrl in adv?) and it prevented some core classes from using adv ones.
This commit is contained in:
@@ -16,9 +16,9 @@
|
||||
|
||||
#include "wx/object.h"
|
||||
|
||||
class WXDLLIMPEXP_FWD_ADV wxSoundTimer;
|
||||
class WXDLLIMPEXP_FWD_CORE wxSoundTimer;
|
||||
|
||||
class WXDLLIMPEXP_ADV wxSoundData
|
||||
class WXDLLIMPEXP_CORE wxSoundData
|
||||
{
|
||||
public :
|
||||
wxSoundData();
|
||||
@@ -39,7 +39,7 @@ protected:
|
||||
bool m_markedForDeletion;
|
||||
} ;
|
||||
|
||||
class WXDLLIMPEXP_ADV wxSound : public wxSoundBase
|
||||
class WXDLLIMPEXP_CORE wxSound : public wxSoundBase
|
||||
{
|
||||
public:
|
||||
wxSound();
|
||||
|
Reference in New Issue
Block a user