Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2012-04-01 21:47:11 +0400
committerYann Leboulanger <asterix@lagaule.org>2012-04-01 21:47:11 +0400
commitaec9f53c2dd8331810c74ad21a6149cfa6088b26 (patch)
tree617aafa9fe67488a3a4189d2ee13204dbc986a30
parent794a66e43578297e5c4a2d4e59e91d9293bdb2eb (diff)
revert unwanted change
-rw-r--r--src/chat_control.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/chat_control.py b/src/chat_control.py
index 8f36e225c..ca769d6dd 100644
--- a/src/chat_control.py
+++ b/src/chat_control.py
@@ -1649,15 +1649,15 @@ class ChatControl(ChatControlBase):
self.restore_conversation()
self.msg_textview.grab_focus()
- # change tooltip text for audio and video buttons if python-farstream is
+ # change tooltip text for audio and video buttons if python-farsight is
# not installed
- if not gajim.HAVE_FARSTREAM:
+ if not gajim.HAVE_FARSIGHT:
tooltip_text = self._audio_button.get_tooltip_text()
self._audio_button.set_tooltip_text(
- '%s\n%s' % (tooltip_text, _('Requires python-farstream.')))
+ '%s\n%s' % (tooltip_text, _('Requires python-farsight.')))
tooltip_text = self._video_button.get_tooltip_text()
self._video_button.set_tooltip_text(
- '%s\n%s' % (tooltip_text, _('Requires python-farstream.')))
+ '%s\n%s' % (tooltip_text, _('Requires python-farsight.')))
gajim.ged.register_event_handler('pep-received', ged.GUI1,
self._nec_pep_received)
@@ -1705,7 +1705,7 @@ class ChatControl(ChatControlBase):
# Jingle detection
if self.contact.supports(NS_JINGLE_ICE_UDP) and \
- gajim.HAVE_FARSTREAM and self.contact.resource:
+ gajim.HAVE_FARSIGHT and self.contact.resource:
self.audio_available = self.contact.supports(NS_JINGLE_RTP_AUDIO)
self.video_available = self.contact.supports(NS_JINGLE_RTP_VIDEO)
else: