diff options
author | Siri Hansen <[email protected]> | 2012-03-20 11:47:48 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2012-03-20 11:47:48 +0100 |
commit | e855e8326a6ce589991da9cafc2590f306d035c3 (patch) | |
tree | d6c3f20066ab197b8b0f59b0ebf1c9b225bab9af /lib | |
parent | e67e94c20f16a102da93a40cfe4edf7885a602d8 (diff) | |
download | otp-e855e8326a6ce589991da9cafc2590f306d035c3.tar.gz otp-e855e8326a6ce589991da9cafc2590f306d035c3.tar.bz2 otp-e855e8326a6ce589991da9cafc2590f306d035c3.zip |
[reltool] Improve title of dependency colum
OTP-9792
The colum listing modules that uses the current application or module
did earlier have the title "Modules used by others". This is now
changed to "Modules using this".
Diffstat (limited to 'lib')
-rw-r--r-- | lib/reltool/src/reltool_app_win.erl | 2 | ||||
-rw-r--r-- | lib/reltool/src/reltool_mod_win.erl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/reltool/src/reltool_app_win.erl b/lib/reltool/src/reltool_app_win.erl index eddb37ea11..e0acfab7aa 100644 --- a/lib/reltool/src/reltool_app_win.erl +++ b/lib/reltool/src/reltool_app_win.erl @@ -292,7 +292,7 @@ create_deps_page(S, Derived) -> UsedByCtrl = create_mods_list_ctrl(Panel, Main, - "Modules used by others", + "Modules using this", " and their applications", undefined, undefined), diff --git a/lib/reltool/src/reltool_mod_win.erl b/lib/reltool/src/reltool_mod_win.erl index 8cf175547b..899423bb6d 100644 --- a/lib/reltool/src/reltool_mod_win.erl +++ b/lib/reltool/src/reltool_mod_win.erl @@ -215,7 +215,7 @@ create_deps_page(S) -> UsedByCtrl = create_mods_list_ctrl(Panel, Main, - "Modules used by others", + "Modules using this", " and their applications"), wxSizer:add(Main, wxStaticLine:new(Panel, [{style, ?wxLI_VERTICAL}]), |