I'm implementing Windows 10 Notification in my application. However, the code below (which runs fine) apparently give a memo leak of 1 TNotification object and 2 strings, yet I free the object at the end of the block:
aNotification := NotificationCenter.CreateNotification;
//-- If not assigned then must be Win 8.1 or below
if not assigned(aNotification) then
exit;
try
aNotification.Title := AlignMixVersionName + ' License';
aNotification.AlertBody := aText;
NotificationCenter.PresentNotification(aNotification);
finally
aNotification.Free;
end;
Am I doing something stupid or is there a memory leak in the implementation of Notifications?
- Steve
aNotification
afterNotificationCenter.PresentNotification(aNotification)
? – QuentinaNotification
is still assigned afterPresentNotification
- so strange. – Trichromatism