From patchwork Wed Mar 21 04:05:35 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel,4/5] Hob: In the package view, change the headings Date: Wed, 21 Mar 2012 04:05:35 -0000 From: Shane Wang X-Patchwork-Id: 23943 Message-Id: <1f228621a07e3c9514c364f47a1a117071764adc.1332302662.git.shane.wang@intel.com> To: bitbake-devel@lists.openembedded.org Change 'Name' to 'Package Name', 'size' to 'Size', 'Brought by' to 'Brought in by'. Signed-off-by: Shane Wang --- bitbake/lib/bb/ui/crumbs/packageselectionpage.py | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py index 23e460c..7f8c351 100755 --- a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py +++ b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py @@ -37,13 +37,13 @@ class PackageSelectionPage (HobPage): 'name' : 'All packages', 'filter' : {}, 'columns' : [{ - 'col_name' : 'Name', + 'col_name' : 'Package Name', 'col_id' : PackageListModel.COL_NAME, 'col_style': 'text', 'col_min' : 100, 'col_max' : 400 }, { - 'col_name' : 'size', + 'col_name' : 'Size', 'col_id' : PackageListModel.COL_SIZE, 'col_style': 'text', 'col_min' : 100, @@ -59,19 +59,19 @@ class PackageSelectionPage (HobPage): 'name' : 'Included', 'filter' : { PackageListModel.COL_INC : [True] }, 'columns' : [{ - 'col_name' : 'Name', + 'col_name' : 'Package Name', 'col_id' : PackageListModel.COL_NAME, 'col_style': 'text', 'col_min' : 100, 'col_max' : 300 }, { - 'col_name' : 'Brought by', + 'col_name' : 'Brought in by', 'col_id' : PackageListModel.COL_BINB, 'col_style': 'text', 'col_min' : 100, 'col_max' : 350 }, { - 'col_name' : 'size', + 'col_name' : 'Size', 'col_id' : PackageListModel.COL_SIZE, 'col_style': 'text', 'col_min' : 100,