Fix for compilation with wxWindows < 2.4.2.

This commit is contained in:
Moritz Bunkus 2004-05-06 18:28:54 +00:00
parent edea6a83b6
commit 1d8ad9d1c9
3 changed files with 10 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2004-05-06 Moritz Bunkus <moritz@bunkus.org>
* mmg: Fix for compilation with wxWindows < 2.4.2.
* Released v0.8.9.
* mmg: new feature: mmg will ask for confirmation before

View File

@ -17,6 +17,10 @@
using namespace libebml;
using namespace libmatroska;
#if ! wxCHECK_VERSION(2,4,2)
# define wxTreeItemIdValue long
#endif
mi_frame *frame;
enum {

View File

@ -45,6 +45,10 @@ using namespace std;
using namespace libebml;
using namespace libmatroska;
#if ! wxCHECK_VERSION(2,4,2)
# define wxTreeItemIdValue long
#endif
class chapters_drop_target_c: public wxFileDropTarget {
private:
tab_chapters *owner;