https://bugs.freedesktop.org/show_bug.cgi?id=77028
Julien Nabet <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] Keywords| |have-backtrace --- Comment #1 from Julien Nabet <[email protected]> --- Relevant code here: http://opengrok.libreoffice.org/xref/core/sfx2/source/sidebar/FocusManager.cxx#224 224 void FocusManager::FocusDeckTitle (void) 225 { 226 if (mpDeckTitleBar != NULL) 227 { 228 if (IsDeckTitleVisible()) 229 { 230 mpDeckTitleBar->GrabFocus(); 231 } 232 else if (mpDeckTitleBar->GetToolBox().GetItemCount() > 0) 233 { 234 ToolBox& rToolBox = mpDeckTitleBar->GetToolBox(); 235 rToolBox.GrabFocus(); 236 rToolBox.Invalidate(); 237 } 238 else 239 FocusPanel(0, false); 240 } 241 else 242 FocusPanel(0, false); 243 } Just an hypothesis but perhaps mpDeckTitleBar->GetToolBox() should be checked against null. I'll give it a try tonight. -- You are receiving this mail because: You are the assignee for the bug.
_______________________________________________ Libreoffice-bugs mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs
