fix errors in url_to_path tfetch table changes

This commit is contained in:
Vincent Sanders 2014-01-25 23:21:28 +00:00
parent 8ce0a10670
commit dc074042e9
3 changed files with 3 additions and 1 deletions

View File

@ -22,6 +22,7 @@
#import "cocoa/plotter.h"
#import "cocoa/DownloadWindowController.h"
#import "cocoa/selection.h"
#import "cocoa/fetch.h"
#import "desktop/gui.h"
#import "content/urldb.h"

View File

@ -808,7 +808,7 @@ static char *path_to_url(const char *path)
* \return RISC OS pathname, allocated on heap, or 0 on failure
*/
static char *url_to_path(const char *url)
char *url_to_path(const char *url)
{
char *path;
char *filename;

View File

@ -119,6 +119,7 @@ void ro_gui_drag_box_start(wimp_pointer *pointer);
bool ro_gui_prequit(void);
const char *ro_gui_default_language(void);
void gui_poll(bool active); /* exported for riscos/wimp_event.c:722 */
char *url_to_path(const char *url);
/* in download.c */
void ro_gui_download_init(void);