diff options
author | dknn <yoann.blein@free.fr> | 2012-08-29 11:14:36 (GMT) |
---|---|---|
committer | dknn <yoann.blein@free.fr> | 2012-09-22 09:34:49 (GMT) |
commit | 56b5b129c2fbea3828faaf0cdf882534c2433eff (patch) | |
tree | 14022983fdcd54c7bcc61f77f12dbe1d7e13f973 /Swift/Controllers | |
parent | 6247ed394302ff2cf1f33a71df808bebf7241242 (diff) | |
download | swift-contrib-56b5b129c2fbea3828faaf0cdf882534c2433eff.zip swift-contrib-56b5b129c2fbea3828faaf0cdf882534c2433eff.tar.bz2 |
Better error resilience
Diffstat (limited to 'Swift/Controllers')
-rw-r--r-- | Swift/Controllers/ScreenSharing/ScreenSharingController.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/Controllers/ScreenSharing/ScreenSharingController.cpp b/Swift/Controllers/ScreenSharing/ScreenSharingController.cpp index a42e9bb..d96dd2f 100644 --- a/Swift/Controllers/ScreenSharing/ScreenSharingController.cpp +++ b/Swift/Controllers/ScreenSharing/ScreenSharingController.cpp @@ -23,7 +23,7 @@ namespace Swift { ScreenSharingController::ScreenSharingController(ScreenSharingManager* screenSharingManager, TimerFactory* timerFactory, DesktopScreenGrabber* desktopScreenGrabber, const JID& to) - : screenGrabber(desktopScreenGrabber), grabTimer(timerFactory->createTimer(1000/0.5)), remoteScreenWindowFactory(0), + : screenGrabber(desktopScreenGrabber), grabTimer(timerFactory->createTimer(1000/1)), remoteScreenWindowFactory(0), remoteScreenWindow(0), otherParty(to), incoming(false), chatWindow(0) { OutgoingScreenSharing::ref oss = screenSharingManager->createOutgoingScreenSharing(to); |