SVN commit 794714 by lunakl: Don't access uninitialized variable (the layout owner ptr). M +2 -2 pager.cpp --- trunk/KDE/kdebase/workspace/plasma/applets/pager/pager.cpp #794713:794714 @@ -78,8 +78,6 @@ m_rows = m_desktopCount; } - recalculateGeometry(); - m_timer = new QTimer(this); m_timer->setSingleShot(true); connect(m_timer, SIGNAL(timeout()), this, SLOT(recalculateWindowRects())); @@ -100,6 +98,8 @@ if ( !m_desktopLayoutOwner->claim( false )) lostDesktopLayoutOwner(); + recalculateGeometry(); + m_currentDesktop = KWindowSystem::currentDesktop(); }