X-Git-Url: https://git.street.me.uk/andy/viking.git/blobdiff_plain/adaab19536e30da4643e707191ff2b989465673c..027ff770382cd253209596b94deaa3ebcfe26841:/src/vikexttool.c diff --git a/src/vikexttool.c b/src/vikexttool.c index 0b735bd3..d76dcc86 100644 --- a/src/vikexttool.c +++ b/src/vikexttool.c @@ -177,3 +177,9 @@ void vik_ext_tool_open ( VikExtTool *self, VikWindow *vwindow ) { VIK_EXT_TOOL_GET_CLASS( self )->open( self, vwindow ); } + +void vik_ext_tool_open_at_position ( VikExtTool *self, VikWindow *vwindow, VikCoord *vc ) +{ + if ( VIK_EXT_TOOL_GET_CLASS( self )->open_at_position ) + VIK_EXT_TOOL_GET_CLASS( self )->open_at_position( self, vwindow, vc ); +}