|
I'm having trouble tracking down the source of this warning:
"Gtk-WARNING **: Unable to retrieve the file info for `file:///home/user/...': Error stating file '/home/user/...': No such file or directory"
I'm using a GtkFileChooserDialog of type GTK_FILE_CHOOSER_ACTION_SAVE. I've connected to the 'response', 'confirm-overwrite', and 'file-activate' signals before my call to gtk_dialog_run() and this warning insists on coming up before anything else.
I understand how GTK+ could be confused, but I thought GTK_FILE_CHOOSER_ACTION_SAVE would tell my GtkFileChooserDialog that when a user makes up a new name and starts to save a new file in a Save As dialog, it would understand that there is no file info to stat because the file hasn't been written yet.
Are there other signals I can connect to. I think I need to look deeper into the inner workings of GtkFileChooserDialog. What am I missing?
~Thanks
|