Replace variant ImeRequest::Disable with fn disable_ime#4426
Open
dhardy wants to merge 5 commits intorust-windowing:masterfrom
Open
Replace variant ImeRequest::Disable with fn disable_ime#4426dhardy wants to merge 5 commits intorust-windowing:masterfrom
dhardy wants to merge 5 commits intorust-windowing:masterfrom
Conversation
Contributor
Author
|
Would you prefer to merge changes piecemeal (just this commit) or shall I push more IME changes into this PR? The plan is roughly outlined here. |
Member
|
I think I'll also look myself into it one more time and probably push some of the changes myself. |
Contributor
Author
|
As you like. I already made further ch
FF8
anges (not pushed yet): move |
Member
|
If you split them into commits, it's fine with me. I can tune based on that. |
Contributor
Author
|
Pushed. My further plans are less concrete:
|
Member
|
I think that |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
changelogmodule if knowledge of this change could be valuable to usersThis is the first part of #4412. It could be merged as-is or in concert with other changes.
Summary
Replace
ImeRequest::Disablewith fndisable_ime.Motivation
It was documented that
ImeRequest::Disablecannot fail, yet it returned aResult. This revision removes the API ambiguity.