Kaydet (Commit) b24737fc authored tarafından Armin Le Grand's avatar Armin Le Grand

#120515# fixed memory leak

üst a835b0af
......@@ -265,7 +265,10 @@ void DialogWindow::Command( const CommandEvent& rCEvt )
IMPL_LINK( DialogWindow, NotifyUndoActionHdl, SfxUndoAction *, pUndoAction )
{
(void)pUndoAction;
// #120515# pUndoAction needs to be deleted, this hand over is an ownership
// change. As long as it does not get added to the undo manager, it needs at
// least to be deleted.
delete pUndoAction;
// not working yet for unocontrols
/*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment