diff -r 04e80d1aaebf -r e8a907801549 eric7/HelpViewer/HelpViewerImpl.py --- a/eric7/HelpViewer/HelpViewerImpl.py Tue Oct 12 21:55:56 2021 +0200 +++ b/eric7/HelpViewer/HelpViewerImpl.py Wed Oct 13 18:15:30 2021 +0200 @@ -50,12 +50,23 @@ """ Public method to set the URL of the document to be shown. - @param url source of the document + @param url URL of the document @type QUrl @exception RuntimeError raised when not implemented """ raise RuntimeError("Not implemented") + def url(self): + """ + Public method to get the URL of the shown document. + + @return url URL of the document + @rtype QUrl + @exception RuntimeError raised when not implemented + """ + raise RuntimeError("Not implemented") + return None + def getData(self, url): """ Public method to get the data to be shown.