diff options
author | Siri Hansen <[email protected]> | 2012-03-21 19:19:43 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2012-03-21 19:19:43 +0100 |
commit | 2497698a1715462d8785179eacb9975adb35a767 (patch) | |
tree | e63a1a1b3d16a18c421768f26b2eedfdd855dc1d /lib/reltool/src/reltool_app_win.erl | |
parent | 8c5a3a78d3ae0bd1261226d97e0b2197bbbb0d07 (diff) | |
parent | 33e42a694e0ddd8a6c02bfe6c04298ca95aa938a (diff) | |
download | otp-2497698a1715462d8785179eacb9975adb35a767.tar.gz otp-2497698a1715462d8785179eacb9975adb35a767.tar.bz2 otp-2497698a1715462d8785179eacb9975adb35a767.zip |
Merge branch 'maint'
Diffstat (limited to 'lib/reltool/src/reltool_app_win.erl')
-rw-r--r-- | lib/reltool/src/reltool_app_win.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/reltool/src/reltool_app_win.erl b/lib/reltool/src/reltool_app_win.erl index 70bd72b258..e0acfab7aa 100644 --- a/lib/reltool/src/reltool_app_win.erl +++ b/lib/reltool/src/reltool_app_win.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2009-2010. All Rights Reserved. +%% Copyright Ericsson AB 2009-2012. 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 @@ -271,8 +271,8 @@ create_apps_list_ctrl(Panel, Sizer, Text) -> ListItem = wxListItem:new(), wxListItem:setAlign(ListItem, ?wxLIST_FORMAT_LEFT), wxListItem:setText(ListItem, Text), + wxListItem:setWidth(ListItem, reltool_utils:get_column_width(ListCtrl)), wxListCtrl:insertColumn(ListCtrl, ?APPS_APP_COL, ListItem), - %% wxListCtrl:setColumnWidth(ListCtrl, ?APPS_APP_COL, ?APPS_APP_COL_WIDTH), wxListItem:destroy(ListItem), wxSizer:add(Sizer, ListCtrl, @@ -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), |