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

« back to all changes in this revision

Viewing changes to libs/internals/activatable.h

  • 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:
35
35
Q_PROPERTY(QString deviceUni READ deviceUni)
36
36
Q_PROPERTY(QString type READ activatableType)
37
37
public:
 
38
    /* Keep this list sorted by priority:
 
39
     * the first types will appear first in
 
40
     * connection list widget.
 
41
     */
38
42
    enum ActivatableType {
 
43
        WirelessInterfaceConnection,
 
44
        VpnInterfaceConnection,
 
45
        GsmInterfaceConnection,
39
46
        InterfaceConnection,
40
 
        WirelessInterfaceConnection,
41
47
        WirelessNetwork,
42
 
        UnconfiguredInterface,
43
 
        VpnInterfaceConnection,
44
48
        HiddenWirelessInterfaceConnection,
45
 
        GsmInterfaceConnection
 
49
        UnconfiguredInterface
46
50
    };
47
51
 
48
52
    virtual ~Activatable();