33 """ |
33 """ |
34 def __init__(self, mainWindow, parent=None): |
34 def __init__(self, mainWindow, parent=None): |
35 """ |
35 """ |
36 Constructor |
36 Constructor |
37 |
37 |
38 @param mainWindow reference to the main window (HelpWindow) |
38 @param mainWindow reference to the main window (WebBrowserWindow) |
39 @param parent reference to the parent widget (HelpBrowser) |
39 @param parent reference to the parent widget (WebBrowserView) |
40 """ |
40 """ |
41 E5LineEdit.__init__(self, parent) |
41 E5LineEdit.__init__(self, parent) |
42 self.setInactiveText(self.tr("Enter the URL here.")) |
42 self.setInactiveText(self.tr("Enter the URL here.")) |
43 self.setWhatsThis(self.tr("Enter the URL here.")) |
43 self.setWhatsThis(self.tr("Enter the URL here.")) |
44 |
44 |