fix initial order to be ascending

This commit is contained in:
Christian Hohnstaedt 2007-02-22 14:53:28 +01:00 committed by Christian Hohnstaedt
parent 002f8fe75c
commit fb02a165ac
2 changed files with 3 additions and 0 deletions

View File

@ -1,3 +1,4 @@
* set initial sorting to ascending order
* add RFC2253 representation of subject and issuer
* to copy&paste
* fix dialog sizes for long DNs

View File

@ -64,6 +64,7 @@ XcaTreeView::XcaTreeView(QWidget *parent)
setEditTriggers(QAbstractItemView::EditKeyPressed);
setRootIsDecorated(false);
setUniformRowHeights (true);
//setAnimated(true);
proxy = new QSortFilterProxyModel(this);
#if QT_VERSION >= 0x040200
@ -74,6 +75,7 @@ XcaTreeView::XcaTreeView(QWidget *parent)
header()->setSortIndicatorShown(true);
#endif
basemodel = NULL;
sortByColumn(0, Qt::AscendingOrder);
}
XcaTreeView::~XcaTreeView()