-rw-r--r-- | core/pim/addressbook/abview.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/pim/addressbook/abview.cpp b/core/pim/addressbook/abview.cpp index 3af7663..0f4bd5f 100644 --- a/core/pim/addressbook/abview.cpp +++ b/core/pim/addressbook/abview.cpp @@ -408,15 +408,12 @@ void AbView::updateListinViews() } void AbView::updateView() { qWarning("AbView::updateView()"); - // Feed all views with new lists - updateListinViews(); - if ( m_viewStack -> visibleWidget() ){ m_viewStack -> visibleWidget() -> clearFocus(); } // If we switching the view, we have to store some information if ( m_list.count() ){ @@ -428,12 +425,15 @@ void AbView::updateView() m_curr_Contact = m_ablabel -> currentEntry_UID(); break; } }else m_curr_Contact = 0; + // Feed all views with new lists + updateListinViews(); + // Inform the world that the view is changed if ( m_curr_View != m_prev_View ) emit signalViewSwitched ( (int) m_curr_View ); m_prev_View = m_curr_View; |