83 @param index index of the entry to show (QModelIndex) |
83 @param index index of the entry to show (QModelIndex) |
84 """ |
84 """ |
85 if not index.isValid(): |
85 if not index.isValid(): |
86 return |
86 return |
87 |
87 |
88 cookiesTable = self.sender() |
88 model = self.cookiesTable.model() |
89 if cookiesTable is None: |
|
90 return |
|
91 |
|
92 model = cookiesTable.model() |
|
93 row = index.row() |
89 row = index.row() |
94 |
90 |
95 domain = model.data(model.index(row, 0)) |
91 domain = model.data(model.index(row, 0)) |
96 name = model.data(model.index(row, 1)) |
92 name = model.data(model.index(row, 1)) |
97 path = model.data(model.index(row, 2)) |
93 path = model.data(model.index(row, 2)) |