fixed wrong ASSERT in column-view (the usecase is valid)

BUG: 158615

svn path=/trunk/KDE/kdebase/apps/; revision=782789
This commit is contained in:
Peter Penz 2008-03-06 00:20:45 +00:00
parent 865a33c5db
commit 80ad31f00a

View file

@ -391,13 +391,13 @@ void DolphinColumnWidget::slotEntered(const QModelIndex& index)
void DolphinColumnWidget::requestActivation()
{
m_view->m_controller->setItemView(this);
m_view->m_controller->requestActivation();
if (!m_active) {
m_view->requestActivation(this);
m_view->m_controller->triggerUrlChangeRequest(m_url);
selectionModel()->clear();
}
Q_ASSERT(m_view->m_controller->itemView() == this);
}
void DolphinColumnWidget::updateFont()