commit e51097e69895f802779529306ffa141428c2f834
parent 737efda8f1f79b06c4775761789d2fe9c6a39e57
Author: cfillion <cfillion@users.noreply.github.com>
Date: Fri, 12 Aug 2016 16:30:10 -0400
about: show package descriptions in Contents tab
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/about.cpp b/src/about.cpp
@@ -204,7 +204,7 @@ ListView *AboutRemote::createMenu()
ListView *AboutRemote::createList()
{
return createControl<ListView>(IDC_LIST, ListView::Columns{
- {AUTO_STR("Name"), 382},
+ {AUTO_STR("Package"), 382},
{AUTO_STR("Version"), 80},
{AUTO_STR("Author"), 90},
});
@@ -262,7 +262,7 @@ void AboutRemote::updateList(const int index)
for(const Package *pkg : *m_packagesData) {
const Version *lastVer = pkg->lastVersion();
- const auto_string &name = make_autostring(pkg->name());
+ const auto_string &name = make_autostring(pkg->displayName());
const auto_string &version = make_autostring(lastVer->name());
const auto_string &author = make_autostring(lastVer->displayAuthor());