102 if online: |
102 if online: |
103 self.__autoConnect() |
103 self.__autoConnect() |
104 |
104 |
105 def __autoConnect(self): |
105 def __autoConnect(self): |
106 """ |
106 """ |
107 Public method to perform the IRC auto connection. |
107 Private method to perform the IRC auto connection. |
108 """ |
108 """ |
109 for networkName in self.__manager.getNetworkNames(): |
109 for networkName in self.__manager.getNetworkNames(): |
110 if self.__manager.getNetwork(networkName).autoConnect(): |
110 if self.__manager.getNetwork(networkName).autoConnect(): |
111 row = self.networkCombo.findText(networkName) |
111 row = self.networkCombo.findText(networkName) |
112 self.networkCombo.setCurrentIndex(row) |
112 self.networkCombo.setCurrentIndex(row) |