https://bugs.kde.org/show_bug.cgi?id=280761
David Faure <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #9 from David Faure <[email protected]> --- I think the crash happens when "this" (the Session instance) gets deleted by some event handling that happens during the QDialog::exec() modal dialog. Then it crashes when accessing a member variable (m_url) of "this", which is logical. Solution 1: use a non-modal dialog Solution 2: use Q[Weak]Pointer on "this", a common recommendation for modal dialogs nowadays. -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ Kdepim-bugs mailing list [email protected] https://mail.kde.org/mailman/listinfo/kdepim-bugs
