diff options
Diffstat (limited to 'src/fs/gnunet-fs-gtk_event-handler.c')
-rw-r--r-- | src/fs/gnunet-fs-gtk_event-handler.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/fs/gnunet-fs-gtk_event-handler.c b/src/fs/gnunet-fs-gtk_event-handler.c index 346a089b..2bf54fdd 100644 --- a/src/fs/gnunet-fs-gtk_event-handler.c +++ b/src/fs/gnunet-fs-gtk_event-handler.c | |||
@@ -206,7 +206,7 @@ struct PublishTab | |||
206 | /** | 206 | /** |
207 | * Animation handle associated with the tree store. | 207 | * Animation handle associated with the tree store. |
208 | */ | 208 | */ |
209 | struct GNUNET_FS_AnimationTreeViewHandle *atv; | 209 | struct GNUNET_GTK_AnimationTreeViewHandle *atv; |
210 | }; | 210 | }; |
211 | 211 | ||
212 | 212 | ||
@@ -289,42 +289,42 @@ static GtkTreePath *current_selected_search_result; | |||
289 | /** | 289 | /** |
290 | * Animation to display while publishing. | 290 | * Animation to display while publishing. |
291 | */ | 291 | */ |
292 | static struct GNUNET_FS_AnimationContext *animation_publishing; | 292 | static struct GNUNET_GTK_AnimationContext *animation_publishing; |
293 | 293 | ||
294 | /** | 294 | /** |
295 | * Animation to display after publishing is complete. | 295 | * Animation to display after publishing is complete. |
296 | */ | 296 | */ |
297 | static struct GNUNET_FS_AnimationContext *animation_published; | 297 | static struct GNUNET_GTK_AnimationContext *animation_published; |
298 | 298 | ||
299 | /** | 299 | /** |
300 | * Animation to display while downloading. | 300 | * Animation to display while downloading. |
301 | */ | 301 | */ |
302 | static struct GNUNET_FS_AnimationContext *animation_downloading; | 302 | static struct GNUNET_GTK_AnimationContext *animation_downloading; |
303 | 303 | ||
304 | /** | 304 | /** |
305 | * Animation to display after downloading is complete. | 305 | * Animation to display after downloading is complete. |
306 | */ | 306 | */ |
307 | static struct GNUNET_FS_AnimationContext *animation_downloaded; | 307 | static struct GNUNET_GTK_AnimationContext *animation_downloaded; |
308 | 308 | ||
309 | /** | 309 | /** |
310 | * Animation to display if a download has stalled. | 310 | * Animation to display if a download has stalled. |
311 | */ | 311 | */ |
312 | static struct GNUNET_FS_AnimationContext *animation_download_stalled; | 312 | static struct GNUNET_GTK_AnimationContext *animation_download_stalled; |
313 | 313 | ||
314 | /** | 314 | /** |
315 | * Animation to display while searching for sources to download from. | 315 | * Animation to display while searching for sources to download from. |
316 | */ | 316 | */ |
317 | static struct GNUNET_FS_AnimationContext *animation_searching_sources; | 317 | static struct GNUNET_GTK_AnimationContext *animation_searching_sources; |
318 | 318 | ||
319 | /** | 319 | /** |
320 | * Animation to display if we found sources to download from. | 320 | * Animation to display if we found sources to download from. |
321 | */ | 321 | */ |
322 | static struct GNUNET_FS_AnimationContext *animation_found_sources; | 322 | static struct GNUNET_GTK_AnimationContext *animation_found_sources; |
323 | 323 | ||
324 | /** | 324 | /** |
325 | * Animation to display if we encountered a hard error. | 325 | * Animation to display if we encountered a hard error. |
326 | */ | 326 | */ |
327 | static struct GNUNET_FS_AnimationContext *animation_error; | 327 | static struct GNUNET_GTK_AnimationContext *animation_error; |
328 | 328 | ||
329 | 329 | ||
330 | /** | 330 | /** |
@@ -347,10 +347,10 @@ GNUNET_FS_GTK_get_current_search_tab () | |||
347 | * @param basename basename of the animation file to load | 347 | * @param basename basename of the animation file to load |
348 | * @return handle to the animation. | 348 | * @return handle to the animation. |
349 | */ | 349 | */ |
350 | static struct GNUNET_FS_AnimationContext * | 350 | static struct GNUNET_GTK_AnimationContext * |
351 | load_animation (const char *basename) | 351 | load_animation (const char *basename) |
352 | { | 352 | { |
353 | struct GNUNET_FS_AnimationContext *ac; | 353 | struct GNUNET_GTK_AnimationContext *ac; |
354 | const char *dd; | 354 | const char *dd; |
355 | char *fn; | 355 | char *fn; |
356 | 356 | ||