Closed
Bug 1188442
Opened 10 years ago
Closed 10 years ago
Fix IMMHandler.cpp compilation on mingw.
Categories
(Core :: Widget: Win32, defect)
Tracking
()
RESOLVED
FIXED
mozilla42
| Tracking | Status | |
|---|---|---|
| firefox42 | --- | fixed |
People
(Reporter: jacek, Assigned: masayuki)
References
Details
(Keywords: inputmethod, regression)
Attachments
(1 file, 1 obsolete file)
Errors look like this:
IMMHandler.cpp:1240:38: error: invalid initialization of non-const reference of type ‘mozilla::widget::IMMHandler::Selection&’ from an rvalue of type ‘mozilla::widget::IMMHandler::Selection’
Attachment #8639913 -
Flags: review?(VYV03354)
Comment 1•10 years ago
|
||
Nakano-san, is it correct to copy-construct here?
Flags: needinfo?(masayuki)
| Assignee | ||
Comment 2•10 years ago
|
||
So, not intentional. I'll create a patch for this.
Flags: needinfo?(masayuki)
| Assignee | ||
Comment 3•10 years ago
|
||
This should fix the bustage and the unexpected behavior.
Attachment #8642322 -
Flags: review?(VYV03354)
Comment 4•10 years ago
|
||
Comment on attachment 8642322 [details] [diff] [review]
IMMHandler::GetSelection() should use static Selection instance when IME doesn't have focus and return its or mSelection's reference
Review of attachment 8642322 [details] [diff] [review]:
-----------------------------------------------------------------
jacek, is this work with mingw?
::: widget/windows/IMMHandler.h
@@ +438,5 @@
> bool EnsureValidSelection(nsWindow* aWindow);
> + private:
> + Selection(const Selection& aOther)
> + {
> + MOZ_CRASH("Don't copy this class");
Selection(const Selection& aOther) = delete;
Please also add
void operator =(const Selection& aOther) = delete;
Attachment #8642322 -
Flags: review?(VYV03354)
Attachment #8642322 -
Flags: review+
Attachment #8642322 -
Flags: feedback?(jacek)
Comment 5•10 years ago
|
||
Comment on attachment 8639913 [details] [diff] [review]
fix
Superceded by Masayuki's patch.
Attachment #8639913 -
Attachment is obsolete: true
Attachment #8639913 -
Flags: review?(VYV03354)
| Reporter | ||
Comment 6•10 years ago
|
||
Comment on attachment 8642322 [details] [diff] [review]
IMMHandler::GetSelection() should use static Selection instance when IME doesn't have focus and return its or mSelection's reference
Works for me, thanks.
| Reporter | ||
Updated•10 years ago
|
Attachment #8642322 -
Flags: feedback?(jacek) → feedback+
| Assignee | ||
Comment 7•10 years ago
|
||
url: https://hg.mozilla.org/integration/mozilla-inbound/rev/3f700e2cebbcc625c2f2aa6d6d857609e8afd8be
changeset: 3f700e2cebbcc625c2f2aa6d6d857609e8afd8be
user: Masayuki Nakano <masayuki@d-toybox.com>
date: Tue Aug 04 17:05:25 2015 +0900
description:
Bug 1188442 IMMHandler::GetSelection() should use static Selection instance when IME doesn't have focus and return its or mSelection's reference r=emk
| Assignee | ||
Updated•10 years ago
|
Assignee: jacek → masayuki
Status: NEW → ASSIGNED
Keywords: inputmethod,
regression
OS: Unspecified → Windows
Hardware: Unspecified → x86
Comment 8•10 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 10 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla42
You need to log in
before you can comment on or make changes to this bug.
Description
•