mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-24 20:01:53 +00:00
Fix for compilation with wxWindows < 2.4.2.
This commit is contained in:
parent
edea6a83b6
commit
1d8ad9d1c9
@ -1,5 +1,7 @@
|
|||||||
2004-05-06 Moritz Bunkus <moritz@bunkus.org>
|
2004-05-06 Moritz Bunkus <moritz@bunkus.org>
|
||||||
|
|
||||||
|
* mmg: Fix for compilation with wxWindows < 2.4.2.
|
||||||
|
|
||||||
* Released v0.8.9.
|
* Released v0.8.9.
|
||||||
|
|
||||||
* mmg: new feature: mmg will ask for confirmation before
|
* mmg: new feature: mmg will ask for confirmation before
|
||||||
|
@ -17,6 +17,10 @@
|
|||||||
using namespace libebml;
|
using namespace libebml;
|
||||||
using namespace libmatroska;
|
using namespace libmatroska;
|
||||||
|
|
||||||
|
#if ! wxCHECK_VERSION(2,4,2)
|
||||||
|
# define wxTreeItemIdValue long
|
||||||
|
#endif
|
||||||
|
|
||||||
mi_frame *frame;
|
mi_frame *frame;
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
|
@ -45,6 +45,10 @@ using namespace std;
|
|||||||
using namespace libebml;
|
using namespace libebml;
|
||||||
using namespace libmatroska;
|
using namespace libmatroska;
|
||||||
|
|
||||||
|
#if ! wxCHECK_VERSION(2,4,2)
|
||||||
|
# define wxTreeItemIdValue long
|
||||||
|
#endif
|
||||||
|
|
||||||
class chapters_drop_target_c: public wxFileDropTarget {
|
class chapters_drop_target_c: public wxFileDropTarget {
|
||||||
private:
|
private:
|
||||||
tab_chapters *owner;
|
tab_chapters *owner;
|
||||||
|
Loading…
Reference in New Issue
Block a user