Skip to content

Commit

Permalink
Fixed typos (issue #4)
Browse files Browse the repository at this point in the history
  • Loading branch information
c-jo committed Nov 13, 2023
1 parent 7de9ba8 commit 40b4cd3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions riscos_toolbox/user_messages/data_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Messages:
class DataTransferMessage(UserMessage):
_fields_ = [
("destination_window", ctypes.c_int32),
("estination_icon", ctypes.c_int32),
("destination_icon", ctypes.c_int32),
("destination_position", Point),
("estimated_size", ctypes.c_int32),
("file_type", ctypes.c_int32),
Expand All @@ -42,7 +42,7 @@ class DataLoadAckMessage(DataTransferMessage):
event_id = Messages.DataLoadAck


class DataSavedkMessage(UserMessage):
class DataSavedMessage(UserMessage):
event_id = Messages.DataSaved


Expand All @@ -52,7 +52,7 @@ class DataOpenMessage(UserMessage):
_fields_ = [
("window_handle", ctypes.c_int32),
("spare", ctypes.c_int32),
("pposition", Point),
("position", Point),
("zero", ctypes.c_int32),
("file_type", ctypes.c_int32),
("_path_name", ctypes.c_char * 212),
Expand Down

0 comments on commit 40b4cd3

Please sign in to comment.