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