181 """ |
181 """ |
182 Private slot to delete the selected channel. |
182 Private slot to delete the selected channel. |
183 """ |
183 """ |
184 itm = self.channelList.selectedItems()[0] |
184 itm = self.channelList.selectedItems()[0] |
185 if itm: |
185 if itm: |
186 res = E5MessageBox.yesNo(self, |
186 res = E5MessageBox.yesNo( |
|
187 self, |
187 self.trUtf8("Delete Channel"), |
188 self.trUtf8("Delete Channel"), |
188 self.trUtf8( |
189 self.trUtf8( |
189 """Do you really want to delete channel <b>{0}</b>?""") |
190 """Do you really want to delete channel <b>{0}</b>?""") |
190 .format(itm.text(0))) |
191 .format(itm.text(0))) |
191 if res: |
192 if res: |