src/eric7/WebBrowser/UrlBar/BookmarkActionSelectionDialog.py

branch
eric7
changeset 10436
f6881d10e995
parent 9653
e67609152c5e
child 10439
21c28b0f9e41
equal deleted inserted replaced
10435:c712d09cc839 10436:f6881d10e995
31 31
32 def __init__(self, url, parent=None): 32 def __init__(self, url, parent=None):
33 """ 33 """
34 Constructor 34 Constructor
35 35
36 @param url URL to be worked on (QUrl) 36 @param url URL to be worked on
37 @param parent reference to the parent widget (QWidget) 37 @type QUrl
38 @param parent reference to the parent widget
39 @type QWidget
38 """ 40 """
39 super().__init__(parent) 41 super().__init__(parent)
40 self.setupUi(self) 42 self.setupUi(self)
41 43
42 self.__action = self.Undefined 44 self.__action = self.Undefined
79 def getAction(self): 81 def getAction(self):
80 """ 82 """
81 Public method to get the selected action. 83 Public method to get the selected action.
82 84
83 @return reference to the associated action 85 @return reference to the associated action
86 @rtype QAction
84 """ 87 """
85 return self.__action 88 return self.__action

eric ide

mercurial