Top
Best
New

Posted by MaximilianEmel 5 days ago

Classic GTK1 GUI Library(gitlab.com)
127 points | 66 commentspage 2
zerr 1 day ago|
Is Glade unmaintained nowadays? The last release is 3 years old.
spookie 1 day ago|
They're working on something for GTK4 iirc
Western0 1 day ago||
I like GTK but......

small example have error (memory leak) in valgrind

unwind 1 day ago|
Without further detail, that's not very helpful.

GTK doesn't implement garbage collection, you need to clean up by destroying widgets and other resources that you have created. Of course, the operating system will free all resources used by your process when it ends, so that kind of final cleanup is often omitted (and even more so in example code).

Western0 4 hours ago|||
show me any example from oficial documentation gtk[1,2,3...] qt etc for no memory leak in valgrind
1718627440 18 hours ago|||
GTK intentionally doesn't calls free, unless some debug symbol is called. This is to prevent trashing before exiting, but is annoying when targeting correctness.
roschdal 1 day ago||
GTK1 is the best GTK.
wer232essf 1 day ago|
[dead]