diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | src/filesel.c | 2 |
2 files changed, 6 insertions, 0 deletions
@@ -1,5 +1,9 @@ 2012-06-19 + * src/filesel.c: removed label warning on non-win32. + +2012-06-19 + * libsylph/socket.c: sock_info_connect_by_hostname(): fixed compilation error with --disable-ipv6 (thanks to Jerry Heyman). diff --git a/src/filesel.c b/src/filesel.c index 9ae885fe..abf6ad1f 100644 --- a/src/filesel.c +++ b/src/filesel.c @@ -200,7 +200,9 @@ static GSList *filesel_select_file_full(const gchar *title, const gchar *file, inc_lock(); +#ifdef G_OS_WIN32 again: +#endif if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) { list = gtk_file_chooser_get_filenames(GTK_FILE_CHOOSER(dialog)); #ifdef G_OS_WIN32 |