~ubuntu-branches/ubuntu/trusty/kopete/trusty

« back to all changes in this revision

Viewing changes to protocols/irc/ui/networkconfigwidget.cpp

  • Committer: Package Import Robot
  • Author(s): Rohan Garg
  • Date: 2013-11-23 17:46:40 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20131123174640-gz1zjv1xqh81bi2h
Tags: 4:4.11.80-0ubuntu1
* New upstream beta release
* Bump build dependency to libotr5-dev
* Update symbols
* Update install files
* Drop new_linphone.diff, not required anymore

Show diffs side-by-side

added added

removed removed

Lines of Context:
280
280
        QString network = m_networkList->currentText();
281
281
        if( KMessageBox::warningContinueCancel(
282
282
                UI::Global::mainWidget(), i18n("<qt>Are you sure you want to delete the network <b>%1</b>?<br>"
283
 
                "Any accounts which use this network will have to be modified.</qt>")
284
 
                .arg(network), i18n("Deleting Network"),
 
283
                "Any accounts which use this network will have to be modified.</qt>", network),
 
284
                i18n("Deleting Network"),
285
285
                KGuiItem(i18n("&Delete Network"),"edit-delete"), KStandardGuiItem::cancel(), QString::fromLatin1("AskIRCDeleteNetwork") ) == KMessageBox::Continue )
286
286
        {
287
287
                d->m_networks.remove( network );
294
294
{
295
295
        QString hostName = m_host->text();
296
296
        if ( KMessageBox::warningContinueCancel(
297
 
                UI::Global::mainWidget(), i18n("<qt>Are you sure you want to delete the host <b>%1</b>?</qt>")
298
 
                .arg(hostName), i18n("Deleting Host"),
 
297
                UI::Global::mainWidget(), i18n("<qt>Are you sure you want to delete the host <b>%1</b>?</qt>", hostName),
 
298
                i18n("Deleting Host"),
299
299
                KGuiItem(i18n("&Delete Host"),"edit-delete"), KStandardGuiItem::cancel(), QString::fromLatin1("AskIRCDeleteHost")) == KMessageBox::Continue )
300
300
        {
301
301
                if ( m_hostList->selectedItem() )