diff options
author | Christian Grothoff <christian@grothoff.org> | 2010-12-24 09:04:57 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2010-12-24 09:04:57 +0000 |
commit | 6f2c86b4561c67812e13626176f3975b8355d5f5 (patch) | |
tree | 569681455e992b13e09dc2af3e938c47b66c092b | |
parent | 480fe95d529de1d0139d126b775ee702b40a6fee (diff) | |
download | gnunet-gtk-6f2c86b4561c67812e13626176f3975b8355d5f5.tar.gz gnunet-gtk-6f2c86b4561c67812e13626176f3975b8355d5f5.zip |
removing bogus break
-rw-r--r-- | contrib/Makefile.in | 1 | ||||
-rw-r--r-- | gnunet_gtk_config.h.in | 8 | ||||
-rw-r--r-- | src/fs_event_handler.c | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/contrib/Makefile.in b/contrib/Makefile.in index 3cee7b71..fec6570d 100644 --- a/contrib/Makefile.in +++ b/contrib/Makefile.in | |||
@@ -157,6 +157,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ | |||
157 | INSTALL_SCRIPT = @INSTALL_SCRIPT@ | 157 | INSTALL_SCRIPT = @INSTALL_SCRIPT@ |
158 | INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ | 158 | INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ |
159 | INTLLIBS = @INTLLIBS@ | 159 | INTLLIBS = @INTLLIBS@ |
160 | INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ | ||
160 | LD = @LD@ | 161 | LD = @LD@ |
161 | LDFLAGS = @LDFLAGS@ | 162 | LDFLAGS = @LDFLAGS@ |
162 | LIBICONV = @LIBICONV@ | 163 | LIBICONV = @LIBICONV@ |
diff --git a/gnunet_gtk_config.h.in b/gnunet_gtk_config.h.in index 80f08570..586f96db 100644 --- a/gnunet_gtk_config.h.in +++ b/gnunet_gtk_config.h.in | |||
@@ -15,6 +15,14 @@ | |||
15 | /* Define to 1 if you have the <argz.h> header file. */ | 15 | /* Define to 1 if you have the <argz.h> header file. */ |
16 | #undef HAVE_ARGZ_H | 16 | #undef HAVE_ARGZ_H |
17 | 17 | ||
18 | /* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the | ||
19 | CoreFoundation framework. */ | ||
20 | #undef HAVE_CFLOCALECOPYCURRENT | ||
21 | |||
22 | /* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in | ||
23 | the CoreFoundation framework. */ | ||
24 | #undef HAVE_CFPREFERENCESCOPYAPPVALUE | ||
25 | |||
18 | /* Define if the GNU dcgettext() function is already present or preinstalled. | 26 | /* Define if the GNU dcgettext() function is already present or preinstalled. |
19 | */ | 27 | */ |
20 | #undef HAVE_DCGETTEXT | 28 | #undef HAVE_DCGETTEXT |
diff --git a/src/fs_event_handler.c b/src/fs_event_handler.c index a9b89f3d..1d11329e 100644 --- a/src/fs_event_handler.c +++ b/src/fs_event_handler.c | |||
@@ -1133,8 +1133,6 @@ clear_downloads (GtkButton *button, | |||
1133 | GNUNET_YES); | 1133 | GNUNET_YES); |
1134 | } | 1134 | } |
1135 | while (TRUE == gtk_tree_model_iter_next (tm, &iter)); | 1135 | while (TRUE == gtk_tree_model_iter_next (tm, &iter)); |
1136 | |||
1137 | GNUNET_break (0); /* not implemented */ | ||
1138 | } | 1136 | } |
1139 | 1137 | ||
1140 | 1138 | ||