Fix sporadic Kicker crash in popup menu handler

This resolves Bug 1425
(cherry picked from commit 9e04189c58)
v3.5.13-sru
Timothy Pearson 11 years ago committed by Slávek Banko
parent 0d94402df3
commit ce52491d41

@ -1179,7 +1179,9 @@ void TaskContainer::popupMenu(int action)
m_menu->installEventFilter( this );
m_menu->exec( pos );
delete m_menu;
if (m_menu) {
delete m_menu;
}
m_menu = 0;
}

Loading…
Cancel
Save