After shutting down your program after running it from Qt Creator, I can see how it looks like the message:
Widgets Excluded: 0 Max Widgets: 281
Added this code to -widgetcount logic is the settings.
My question is, what does the maximum widget mean? Does it show how many widgets are created? Whenever I open it again and shut down the dialogue several times, even after seeing the number is increasing, I am worried about memory usage. It seems as if I open it every time. (The same dialog), widgets are not locked properly and new widgets are kept in memory only.
,
-widgetcount , Prints debug messages at the end of the number of widgets and maximum widgets are present at the same time
It is used to find out that any memory leaks in your application Yes or No.
With your question,
widgets left: 0 maximum widgets: 281
Aggressive The number of 0 and maximum widgets is present ( maximum widgets ) 281 ..
You do not have to worry about memory leaks
Hope it helps ..
Comments
Post a Comment