Opened 9 days ago

Last modified 9 days ago

#12 new defect

XWorkplace monitor widget needs to call "WinDestroyPointer" on the hptrCpuTemp icon pointer handle

Reported by: erdmann Owned by:
Priority: major Milestone:
Component: component1 Version:
Keywords: Cc:

Description (last modified by erdmann)

XWorkplace 1.0.17:

I am implementing a widget for AMD based CPUs to report temperature (ACPI on my system does not provide the necessary functionality, therefore the monitor widget does not work for me).
I took the "monitor widget" source code as a base. I am therefore using the same code to load the CPU Temperature icon/pointer to display from the XFLDR DLL resources.
However, the "monitor widget" does not destroy the pointer when "WgtDestroy" is called (on widget window destruction). That it turn leads to hang problems in my widget as it is using the same resource.

Suggest to add this code to "WgtDestroy":

if (pPrivate->hptrCpuTemp)
   WinDestroyPointer(pPrivate->hptrCpuTemp)

as is done for the other pointers that it loads (hptrAC and hptrBattery).
Of course, a current workaround for my widget is to copy the icon and add it as a resource to my own Widget DLL.

Change History (2)

comment:1 by erdmann, 9 days ago

Description: modified (diff)

comment:2 by erdmann, 9 days ago

Description: modified (diff)
Note: See TracTickets for help on using tickets.