Skip to content

Commit cc09231

Browse files
committed
randr: get_output_property: Fix parameter names to match the request
definition. "longOffset" and "longLength" should be "long_offset" and "long_length", respectively.
1 parent 842982f commit cc09231

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Xlib/ext/randr.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -609,15 +609,15 @@ class GetOutputProperty(rq.ReplyRequest):
609609
rq.List('value', rq.Card8Obj),
610610
)
611611

612-
def get_output_property(self, output, property, type, longOffset, longLength):
612+
def get_output_property(self, output, property, type, long_offset, long_length):
613613
return GetOutputProperty(
614614
display=self.display,
615615
opcode=self.display.get_extension_major(extname),
616616
output=output,
617617
property=property,
618618
type=type,
619-
longOffset=longOffset,
620-
longLength=longLength,
619+
long_offset=long_offset,
620+
long_length=long_length,
621621
)
622622

623623

0 commit comments

Comments
 (0)