Commit f02bfae1 authored by Dan Pascu's avatar Dan Pascu

Fixed typos

parent f4ae2397
...@@ -2169,7 +2169,7 @@ class AudioSessionModel(QAbstractListModel): ...@@ -2169,7 +2169,7 @@ class AudioSessionModel(QAbstractListModel):
session.blink_session.clientConferenceChanged.connect(self._SH_BlinkSessionClientConferenceChanged) session.blink_session.clientConferenceChanged.connect(self._SH_BlinkSessionClientConferenceChanged)
self.sessionAboutToBeAdded.emit(session) self.sessionAboutToBeAdded.emit(session)
self._add_session(session) self._add_session(session)
# not the right place to do this. the list should do it (else the model needs a backreference to the list), however in addSessionAndConference we can't avoid doing it -Dan # not the right place to do this. the list should do it (else the model needs a back-reference to the list), however in addSessionAndConference we can't avoid doing it -Dan
selection_model = self.session_list.selectionModel() selection_model = self.session_list.selectionModel()
selection_model.select(self.index(self.rowCount()-1), selection_model.ClearAndSelect) selection_model.select(self.index(self.rowCount()-1), selection_model.ClearAndSelect)
self.sessionAdded.emit(session) self.sessionAdded.emit(session)
...@@ -2261,7 +2261,7 @@ class AudioSessionModel(QAbstractListModel): ...@@ -2261,7 +2261,7 @@ class AudioSessionModel(QAbstractListModel):
session_list.scrollToTop() session_list.scrollToTop()
self.structureChanged.emit() self.structureChanged.emit()
def breakConference(self, conference): # replace this by an endConference (or termninate/hangupConference) functionality -Dan def breakConference(self, conference): # replace this by an endConference (or terminate/hangupConference) functionality -Dan
sessions = [blink_session.items.audio for blink_session in conference.sessions] sessions = [blink_session.items.audio for blink_session in conference.sessions]
session_list = self.session_list session_list = self.session_list
selection_model = session_list.selectionModel() selection_model = session_list.selectionModel()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment