From patchwork Wed Mar 21 04:05:34 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel,3/5] Hob: In the recipe view, change the headings Date: Wed, 21 Mar 2012 04:05:34 -0000 From: Shane Wang X-Patchwork-Id: 23939 Message-Id: <3fc286920e38c3b6224e6f1bbd5fef557d71dd33.1332302662.git.shane.wang@intel.com> To: bitbake-devel@lists.openembedded.org In 'Recipe' table, change 'Recipe' to 'Recipe Name' In 'Included' table, change 'Recipe' to 'Recipe (Recipe Collection) Name', and 'Brought by' to 'Brought in by'. [Yocto #2145] Signed-off-by: Shane Wang --- bitbake/lib/bb/ui/crumbs/recipeselectionpage.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py b/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py index 6dd7c1e..409f446 100755 --- a/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py +++ b/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py @@ -36,7 +36,7 @@ class RecipeSelectionPage (HobPage): 'name' : 'Recipe', 'filter' : { RecipeListModel.COL_TYPE : ['recipe'] }, 'columns' : [{ - 'col_name' : 'Recipe', + 'col_name' : 'Recipe Name', 'col_id' : RecipeListModel.COL_NAME, 'col_style': 'text', 'col_min' : 100, @@ -87,13 +87,13 @@ class RecipeSelectionPage (HobPage): 'filter' : { RecipeListModel.COL_INC : [True], RecipeListModel.COL_TYPE : ['recipe', 'task'] }, 'columns' : [{ - 'col_name' : 'Recipe', + 'col_name' : 'Recipe (Recipe Collection) Name', 'col_id' : RecipeListModel.COL_NAME, 'col_style': 'text', 'col_min' : 100, 'col_max' : 400 }, { - 'col_name' : 'Brought by', + 'col_name' : 'Brought in by', 'col_id' : RecipeListModel.COL_BINB, 'col_style': 'text', 'col_min' : 100,