-
Notifications
You must be signed in to change notification settings - Fork 8.4k
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
Replace result codes with exceptions in JumpList #13688
Conversation
7b46c7b
to
f9dd951
Compare
// It's easier to clear the list and re-add everything. The settings aren't | ||
// updated often, and there likely isn't a huge amount of items to add. | ||
THROW_IF_FAILED(jumplistItems->Clear()); |
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.
This PR is much easier to review by suppressing whitespace changes. 🙂
nit: reword PR name/commit to be in imperative style. Imagine that it'll complete the sentence, "This commit will..." :) |
Hello @lhecker! Because this pull request has the p.s. you can customize the way I help with merging this pull request, such as holding this pull request until a specific person approves. Simply @mention me (
|
This commit simplifies `Jumplist::UpdateJumplist` by using exceptions instead of returning error codes. Otherwise the code is identical to before. (cherry picked from commit 768d4b5) Service-Card-Id: 84836267 Service-Version: 1.15
🎉 Handy links: |
This commit simplifies
Jumplist::UpdateJumplist
by using exceptionsinstead of returning error codes. Otherwise the code is identical to before.