equal
deleted
inserted
replaced
516 QHelpContentWidget::QHelpContentWidget() |
516 QHelpContentWidget::QHelpContentWidget() |
517 : QTreeView(0) |
517 : QTreeView(0) |
518 { |
518 { |
519 header()->hide(); |
519 header()->hide(); |
520 setUniformRowHeights(true); |
520 setUniformRowHeights(true); |
521 connect(this, SIGNAL(activated(const QModelIndex&)), |
521 connect(this, SIGNAL(activated(QModelIndex)), |
522 this, SLOT(showLink(const QModelIndex&))); |
522 this, SLOT(showLink(QModelIndex))); |
523 } |
523 } |
524 |
524 |
525 /*! |
525 /*! |
526 Returns the index of the content item with the \a link. |
526 Returns the index of the content item with the \a link. |
527 An invalid index is returned if no such an item exists. |
527 An invalid index is returned if no such an item exists. |