X-Git-Url: https://git.street.me.uk/andy/viking.git/blobdiff_plain/825413bac81e7234ed27a8ff3343a8295cc393e2..43e8b799d298705a645376a567b89faa20d55a87:/src/vikgototool.c?ds=inline diff --git a/src/vikgototool.c b/src/vikgototool.c index 7ed10790..3b7f5ceb 100644 --- a/src/vikgototool.c +++ b/src/vikgototool.c @@ -40,7 +40,7 @@ static GObjectClass *parent_class; static void goto_tool_finalize ( GObject *gob ); static gchar *goto_tool_get_label ( VikGotoTool *vw ); -static DownloadOptions *goto_tool_get_download_options ( VikGotoTool *self ); +static DownloadMapOptions *goto_tool_get_download_options ( VikGotoTool *self ); typedef struct _VikGotoToolPrivate VikGotoToolPrivate; @@ -204,7 +204,7 @@ static gchar *goto_tool_get_label ( VikGotoTool *self ) return g_strdup ( priv->label ); } -static DownloadOptions *goto_tool_get_download_options ( VikGotoTool *self ) +static DownloadMapOptions *goto_tool_get_download_options ( VikGotoTool *self ) { // Default: return NULL return NULL; @@ -220,7 +220,7 @@ gchar *vik_goto_tool_get_url_format ( VikGotoTool *self ) return VIK_GOTO_TOOL_GET_CLASS( self )->get_url_format( self ); } -DownloadOptions *vik_goto_tool_get_download_options ( VikGotoTool *self ) +DownloadMapOptions *vik_goto_tool_get_download_options ( VikGotoTool *self ) { return VIK_GOTO_TOOL_GET_CLASS( self )->get_download_options( self ); }