On 8/15/2011 2:54 PM, Bill Meier wrote:
On 8/15/2011 2:28 PM, Guy Harris wrote:
On Aug 15, 2011, at 10:47 AM, Bill Meier wrote:
Exiting Wireshark (with no gtk_quit_destroy()) in the follow_stream
code left a file in the temp directory.
Is there some reason why we don't delete the file when the "{TCP,SSL}
Stream" window is destroyed? Presumably that window gets destroyed
when the app quits, but it also gets destroyed if you just close the
window.
That's what I assumed & expected, but it seems that the "destroy"
callback for the window doesn't get called when the app exits since the
file didn't get removed when I simply exited Wireshark by clicking the
upper right corner of the main window.
Maybe something about the window is a dialog window ?
Code from dlg_window_new()
* On Windows, making the dialogs transient to top_level behaves
strangely.
* It is not possible any more to bring the top level window to
front easily.
* So we don't do this on Windows.
*/
#ifndef _WIN32
if (top_level) {
gtk_window_set_transient_for(GTK_WINDOW(win),
GTK_WINDOW(top_level));
}
#endif /*_WIN32*/
Now I remember why I lost the energy to pursue this further .... :)