Changeset 8494 for branches/jingle/src
- Timestamp:
- 08/13/07 18:17:22 (17 months ago)
- Files:
-
- 1 modified
-
branches/jingle/src/gajim.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/jingle/src/gajim.py
r8491 r8494 2370 2370 # pygtk2.8+ on win, breaks io_add_watch. 2371 2371 # We use good old select.select() 2372 if os.name == 'nt':2372 if True or os.name == 'nt': 2373 2373 gajim.idlequeue = idlequeue.SelectIdleQueue() 2374 2374 else: … … 2485 2485 2486 2486 gobject.timeout_add(100, self.autoconnect) 2487 gobject.timeout_add(200 0, self.process_connections)2487 gobject.timeout_add(200, self.process_connections) 2488 2488 gobject.timeout_add(10000, self.read_sleepy) 2489 2489
