From be1db4498d109f24cee4c85e20c5e70e399241fb Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A1n=20Kupec?= Date: Tue, 12 Oct 2010 16:26:01 +0200 Subject: [PATCH] Added Status to lp --issues table --- src/update.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/update.cc b/src/update.cc index 0b9978d..065cb4a 100755 --- a/src/update.cc +++ b/src/update.cc @@ -635,7 +635,7 @@ void list_patches_by_issue(Zypper & zypper) Table t; TableHeader th; - th << _("Issue") << _("No.") << _("Patch") << _("Category"); + th << _("Issue") << _("No.") << _("Patch") << _("Category") << _("Status"); t << th; #define FILL_ISSUES(TYPE, ID) \ @@ -729,6 +729,7 @@ void list_patches_by_issue(Zypper & zypper) tr << d->subFind(sat::SolvAttr::updateReferenceId).asString(); tr << (patch->name() + "-" + patch->edition().asString()); tr << patch->category(); + tr << (pi.isBroken() ? _("needed") : _("not needed")); t << tr; } } -- 2.7.4