Added information about packages installed
This commit is contained in:
13
view_info.cpp
Normal file
13
view_info.cpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#include "view_info.h"
|
||||
|
||||
view_info::view_info()
|
||||
{
|
||||
this->m_refTreeModel = Gtk::ListStore::create(this->m_Columns);
|
||||
this->tree.set_model(this->m_refTreeModel);
|
||||
|
||||
tree.append_column("name", m_Columns.r_name);
|
||||
tree.append_column("date", m_Columns.r_date);
|
||||
tree.append_column("config", m_Columns.r_config);
|
||||
tree.append_column("user", m_Columns.r_user);
|
||||
this->add(this->tree);
|
||||
}
|
||||
Reference in New Issue
Block a user