44 """ |
44 """ |
45 Class method to get a reference to our singleton. |
45 Class method to get a reference to our singleton. |
46 |
46 |
47 @param networkAccessManager reference to the network access manager |
47 @param networkAccessManager reference to the network access manager |
48 (QNetworkAccessManager) |
48 (QNetworkAccessManager) |
|
49 @return reference to the network monitor singleton (E5NetworkMonitor) |
49 """ |
50 """ |
50 if cls._monitor is None: |
51 if cls._monitor is None: |
51 cls._monitor = E5NetworkMonitor(networkAccessManager) |
52 cls._monitor = E5NetworkMonitor(networkAccessManager) |
52 cls._monitor.setAttribute(Qt.WA_DeleteOnClose, True) |
53 cls._monitor.setAttribute(Qt.WA_DeleteOnClose, True) |
53 |
54 |