diff options
author | Björn Gustavsson <[email protected]> | 2012-02-09 08:59:27 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2012-02-09 08:59:27 +0100 |
commit | 4b222f0a5c4b90b99cdfae8b9409ef7f10fdb160 (patch) | |
tree | fb58764246e1ae9b29babc52be0a28c20c83389e /lib/debugger/src/dbg_ui_winman.erl | |
parent | 6004ec3e1785913ff0b74054cf614a35c180d54a (diff) | |
parent | 0fd29d5305952450b8b0d0172994b24af07aba88 (diff) | |
download | otp-4b222f0a5c4b90b99cdfae8b9409ef7f10fdb160.tar.gz otp-4b222f0a5c4b90b99cdfae8b9409ef7f10fdb160.tar.bz2 otp-4b222f0a5c4b90b99cdfae8b9409ef7f10fdb160.zip |
Merge branch 'bjorn/deprecations/OTP-9907' into maint
* bjorn/deprecations/OTP-9907:
Deprecate the Toolbar application
Deprecate applications that have been superseded by observer
Suppress deprecated warnings in all modules that call 'gs'
Deprecate the gs application
Mark doc_builder as removed (and not merely deprecated)
Diffstat (limited to 'lib/debugger/src/dbg_ui_winman.erl')
-rw-r--r-- | lib/debugger/src/dbg_ui_winman.erl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/debugger/src/dbg_ui_winman.erl b/lib/debugger/src/dbg_ui_winman.erl index c7aac0df23..8619be344b 100644 --- a/lib/debugger/src/dbg_ui_winman.erl +++ b/lib/debugger/src/dbg_ui_winman.erl @@ -18,6 +18,11 @@ %% -module(dbg_ui_winman). -behaviour(gen_server). +-compile([{nowarn_deprecated_function,{gs,config,2}}, + {nowarn_deprecated_function,{gs,destroy,1}}, + {nowarn_deprecated_function,{gs,menu,3}}, + {nowarn_deprecated_function,{gs,menubutton,3}}, + {nowarn_deprecated_function,{gs,menuitem,3}}]). %% External exports -export([start/0]). |