Network/IRC/IrcNetworkEditDialog.py

branch
Py2 comp.
changeset 3058
0a02c433f52d
parent 3057
10516539f238
parent 3020
542e97d4ecb3
child 3060
5883ce99ee12
equal deleted inserted replaced
3057:10516539f238 3058:0a02c433f52d
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:

eric ide

mercurial