From 1490258b3e25c05769dc1dfd1a1a6c7179fb88cf Mon Sep 17 00:00:00 2001 From: Sven Weidauer Date: Thu, 20 Jan 2011 13:22:39 +0000 Subject: Renamed 'spinning' property to 'isProcessing' so that the tab bar picks it up and displays a spinner. svn path=/trunk/netsurf/; revision=11420 --- cocoa/gui.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cocoa/gui.m') diff --git a/cocoa/gui.m b/cocoa/gui.m index 991772df7..2841849e2 100644 --- a/cocoa/gui.m +++ b/cocoa/gui.m @@ -223,12 +223,12 @@ void gui_window_set_url(struct gui_window *g, const char *url) void gui_window_start_throbber(struct gui_window *g) { - [(BrowserViewController *)g setSpinning: YES]; + [(BrowserViewController *)g setIsProcessing: YES]; } void gui_window_stop_throbber(struct gui_window *g) { - [(BrowserViewController *)g setSpinning: NO]; + [(BrowserViewController *)g setIsProcessing: NO]; } void gui_window_set_icon(struct gui_window *g, hlcache_handle *icon) -- cgit v1.2.3