aboutsummaryrefslogtreecommitdiff
path: root/src/fs
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-07-12 20:38:48 +0000
committerChristian Grothoff <christian@grothoff.org>2014-07-12 20:38:48 +0000
commit935203c804ad6ec126e4a07483de95dd876a73f2 (patch)
tree5b097e35684219e8d9a4fb4a8c0934c89ecae85c /src/fs
parentd4d065ab407d672099377eef2a4f0b15fe7e0079 (diff)
downloadgnunet-gtk-935203c804ad6ec126e4a07483de95dd876a73f2.tar.gz
gnunet-gtk-935203c804ad6ec126e4a07483de95dd876a73f2.zip
rename animation symbols to reflect non-FS common status
Diffstat (limited to 'src/fs')
-rw-r--r--src/fs/gnunet-fs-gtk_event-handler.c22
-rw-r--r--src/fs/gnunet-fs-gtk_event-handler.h2
2 files changed, 12 insertions, 12 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 */
292static struct GNUNET_FS_AnimationContext *animation_publishing; 292static 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 */
297static struct GNUNET_FS_AnimationContext *animation_published; 297static struct GNUNET_GTK_AnimationContext *animation_published;
298 298
299/** 299/**
300 * Animation to display while downloading. 300 * Animation to display while downloading.
301 */ 301 */
302static struct GNUNET_FS_AnimationContext *animation_downloading; 302static 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 */
307static struct GNUNET_FS_AnimationContext *animation_downloaded; 307static 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 */
312static struct GNUNET_FS_AnimationContext *animation_download_stalled; 312static 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 */
317static struct GNUNET_FS_AnimationContext *animation_searching_sources; 317static 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 */
322static struct GNUNET_FS_AnimationContext *animation_found_sources; 322static 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 */
327static struct GNUNET_FS_AnimationContext *animation_error; 327static 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 */
350static struct GNUNET_FS_AnimationContext * 350static struct GNUNET_GTK_AnimationContext *
351load_animation (const char *basename) 351load_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
diff --git a/src/fs/gnunet-fs-gtk_event-handler.h b/src/fs/gnunet-fs-gtk_event-handler.h
index 9261930f..1e399445 100644
--- a/src/fs/gnunet-fs-gtk_event-handler.h
+++ b/src/fs/gnunet-fs-gtk_event-handler.h
@@ -110,7 +110,7 @@ struct SearchTab
110 /** 110 /**
111 * Animation handle associated with the tree store. 111 * Animation handle associated with the tree store.
112 */ 112 */
113 struct GNUNET_FS_AnimationTreeViewHandle *atv; 113 struct GNUNET_GTK_AnimationTreeViewHandle *atv;
114 114
115 /** 115 /**
116 * Number of results we got for this search. 116 * Number of results we got for this search.