-
-
Notifications
You must be signed in to change notification settings - Fork 607
More haiku: Keyboard & Mouse & NetIO #1567
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| { | ||
| return NULL; | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| { | |
| return NULL; | |
| } | |
| return "get_input_devices(&list) failed"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
| ffStrbufAppendS(&name, " (stopped)"); | ||
|
|
||
| FFKeyboardDevice* device = (FFKeyboardDevice*) ffListAdd(devices); | ||
| ffStrbufInitStatic(&device->serial, ""); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| ffStrbufInitStatic(&device->serial, ""); | |
| ffStrbufInit(&device->serial); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
|
|
||
| FFKeyboardDevice* device = (FFKeyboardDevice*) ffListAdd(devices); | ||
| ffStrbufInitStatic(&device->serial, ""); | ||
| ffStrbufInitMove(&device->name, &name); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not ffStrbufInitS(&device->name, device->Name());?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, I just copied from another file which did that… Also I append the "(stopped)" info
| } | ||
|
|
||
| return NULL; | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ditto
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is having no single mouse an error?
|
|
Should be fixed. |
No description provided.