aboutsummaryrefslogtreecommitdiffstats
path: root/lib/wx/c_src/wxe_events.h
diff options
context:
space:
mode:
authorDan Gudmundsson <[email protected]>2013-01-16 16:45:01 +0100
committerDan Gudmundsson <[email protected]>2013-01-16 16:45:01 +0100
commit086e369ee6a480a9de64bfc9c51430622ef9b2b6 (patch)
tree073e2fc7466837523411542caf05595ff34c7e28 /lib/wx/c_src/wxe_events.h
parentb1ed656aa179b0d4c8a385d9cde93d326d835302 (diff)
downloadotp-086e369ee6a480a9de64bfc9c51430622ef9b2b6.tar.gz
otp-086e369ee6a480a9de64bfc9c51430622ef9b2b6.tar.bz2
otp-086e369ee6a480a9de64bfc9c51430622ef9b2b6.zip
wx: Remove deprecated driver_send_term usage
Diffstat (limited to 'lib/wx/c_src/wxe_events.h')
-rw-r--r--lib/wx/c_src/wxe_events.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/wx/c_src/wxe_events.h b/lib/wx/c_src/wxe_events.h
index 43ea656a8d..6bbb0dfa13 100644
--- a/lib/wx/c_src/wxe_events.h
+++ b/lib/wx/c_src/wxe_events.h
@@ -1,7 +1,7 @@
/*
* %CopyrightBegin%
*
- * Copyright Ericsson AB 2008-2009. All Rights Reserved.
+ * Copyright Ericsson AB 2008-2013. All Rights Reserved.
*
* The contents of this file are subject to the Erlang Public License,
* Version 1.1, (the "License"); you may not use this file except in
@@ -54,7 +54,7 @@ public:
class wxeEvtListener : public wxEvtHandler
{
public:
- wxeEvtListener(ErlDrvPort Thisport) : port(Thisport)
+ wxeEvtListener(ErlDrvTermData Thisport) : port(Thisport)
{}
// {fprintf(stderr, "Creating %x\r\n", (unsigned int) this); fflush(stderr);}
void forward(wxEvent& event);
@@ -62,7 +62,7 @@ public:
((WxeApp *)wxTheApp)->clearPtr(this);
// fprintf(stderr, "Deleteing %x\r\n", (unsigned int) this); fflush(stderr);
};
- ErlDrvPort port;
+ ErlDrvTermData port;
};
#endif