~ubuntu-branches/ubuntu/natty/muon/natty

« back to all changes in this revision

Viewing changes to muon/ManagerWidget.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas
  • Date: 2011-01-03 14:28:31 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20110103142831-htvytta1vjsdggcg
Tags: 1.0.95-0ubuntu1
* New upstream release candidate:
  - Add a new libmuonprivate1 package for the new libmuonprivate library
    which was formerly a static library
  - Create debian/not-installed and place the development symlink for
    libmuonprivate in it, since it is a private library
* Port the packaging to the debhelper 8 standard:
  - Bump debian/compat to 8
  - Bump the build-depend version on debhelper to 8.0.0~
  - Place the debhelper options after the sequence in debian/rules
* Add a homepage field to debian/control with Muon's homepage

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
 
61
61
void ManagerWidget::reload()
62
62
{
63
 
    m_detailsWidget->clear();
64
 
    m_model->clear();
65
 
    m_proxyModel->invalidate();
66
 
    m_proxyModel->clear();
67
 
    m_proxyModel->setSourceModel(0);
68
 
    m_backend->reloadCache();
69
 
    m_model->setPackages(m_backend->availablePackages());
70
 
    m_proxyModel->setSourceModel(m_model);
71
 
    m_packageView->header()->setResizeMode(0, QHeaderView::Stretch);
72
 
    m_packageView->sortByColumn(0, Qt::DescendingOrder);
 
63
    PackageWidget::reload();
73
64
    startSearch();
74
65
}
75
66