327 @pyqtSlot(QUrl) |
327 @pyqtSlot(QUrl) |
328 def on_previewView_linkClicked(self, url): |
328 def on_previewView_linkClicked(self, url): |
329 """ |
329 """ |
330 Private slot handling the clicking of a link. |
330 Private slot handling the clicking of a link. |
331 |
331 |
332 @param url url of the clicked link (QUrl) |
332 @param url URL of the clicked link |
333 """ |
333 @type QUrl |
334 e5App().getObject("UserInterface").launchHelpViewer(url.toString()) |
334 """ |
|
335 e5App().getObject("UserInterface").launchHelpViewer(url) |
335 |
336 |
336 def __execJavaScript(self, script): |
337 def __execJavaScript(self, script): |
337 """ |
338 """ |
338 Private function to execute a JavaScript function Synchroneously. |
339 Private function to execute a JavaScript function Synchroneously. |
339 |
340 |