Skip to content

Commit

Permalink
refactor parse_client_caps calls to make sure we don't forget to call…
Browse files Browse the repository at this point in the history
… one of the mixin

git-svn-id: https://xpra.org/svn/Xpra/trunk@18596 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Feb 25, 2018
1 parent af84a8d commit ed555e0
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions src/xpra/server/source/client_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,15 +234,8 @@ def parse_hello(self, c):
self.wants_features = c.boolget("wants_features", True)
self.wants_default_cursor = c.boolget("wants_default_cursor", False)

ClientInfoMixin.parse_client_caps(self, c)
FilePrintMixin.parse_client_caps(self, c)
AudioMixin.parse_client_caps(self, c)
MMAP_Connection.parse_client_caps(self, c)
WindowsMixin.parse_client_caps(self, c)
EncodingsMixin.parse_client_caps(self, c)
InputMixin.parse_client_caps(self, c)
AVSyncMixin.parse_client_caps(self, c)
ClientDisplayMixin.parse_client_caps(self, c)
for mixin in ClientConnection.__bases__:
mixin.parse_client_caps(self, c)

#general features:
self.info_namespace = c.boolget("info-namespace")
Expand Down

0 comments on commit ed555e0

Please sign in to comment.