~ubuntu-branches/ubuntu/precise/networkmanagement/precise

« back to all changes in this revision

Viewing changes to libs/ui/pppoepreferences.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2011-10-23 14:00:13 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20111023140013-e38hdzybcg6zndrk
Tags: 0.9~svngit.nm09.20111023.ff842e-0ubuntu1
* New upstream snapshot.
* Drop all patches, merged upstream.
* Add kubuntu_add_subdirectory_po.diff to build the translations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
    m_connection = new Knm::Connection(QUuid(connectionId), Knm::Connection::Pppoe);
40
40
 
41
41
    m_contents->setConnection(m_connection);
42
 
    m_contents->setDefaultName(i18n("New PPPoE Connection"));
 
42
    m_contents->setDefaultName(i18n("New DSL Connection"));
43
43
 
44
44
    prepareSettings();
45
45
}
56
56
    else
57
57
        m_connection = con;
58
58
 
59
 
    QString connectionId = m_connection->uuid().toString();
60
 
 
61
59
    m_contents->setConnection(m_connection);
62
 
    m_contents->setDefaultName(i18n("New PPPoE Connection"));
 
60
    m_contents->setDefaultName(i18n("New DSL Connection"));
63
61
 
64
62
    prepareSettings();
65
63
}