Closed
Bug 90910
Opened 24 years ago
Closed 24 years ago
Long word is truncated on conversion
Categories
(Core :: Internationalization, defect, P2)
Tracking
()
VERIFIED
FIXED
mozilla0.9.5
People
(Reporter: kazhik, Assigned: tetsuroy)
References
Details
(Keywords: intl)
Attachments
(1 file)
|
1.19 KB,
patch
|
shanjian
:
review+
waterson
:
superreview+
|
Details | Diff | Splinter Review |
Japanese string which has over 31 characters is truncated on IME
conversion.
(1) Register a long word. For example,
Yomi: "Bagujira"
Goku: "http://www.mozilla.gr.jp/docs/beginbugzilla.html"
(2) Enter "Bagujira" and hit space bar to convert it. The result is:
"http://www.mozilla.gr.jp/docs/b"
Build: 2001071408/Win2k
Comment 1•24 years ago
|
||
Reassign to yokoyama, cc to shanjian.
Assignee: nhotta → yokoyama
Keywords: intl
| Assignee | ||
Comment 3•24 years ago
|
||
accepting and setting the milestone to 0.9.3 to see if I can fix this in time.
Status: NEW → ASSIGNED
Priority: -- → P2
Target Milestone: --- → mozilla0.9.3
| Assignee | ||
Comment 4•24 years ago
|
||
Moving milestone to 0.9.4
| Assignee | ||
Updated•24 years ago
|
Target Milestone: mozilla0.9.3 → mozilla0.9.4
Comment 5•24 years ago
|
||
I guess it could be problem in the following lines in
mozilla/widget/src/windows/nsWindow.cpp
5046: mIMEAttributeString = new PRUint8[attrStrLen+32];
5047: mIMEAttributeStringSize = attrStrLen+32;
5056: mIMEAttributeString = new PRUint8[attrStrLen+32];
5057: mIMEAttributeStringSize = attrStrLen+32;
5079: mIMECompClauseString = new PRUint32 [compClauseLen+32];
5080: mIMECompClauseStringSize = compClauseLen+32;
5096: mIMECompClauseString = new PRUint32 [compClauseLen+32];
5097: mIMECompClauseStringSize = compClauseLen+32;
or could around it.
move to m0.9.5
Keywords: nsbranch
Target Milestone: mozilla0.9.4 → mozilla0.9.5
nsbranch- since Frank moved it to 0.9.5
| Assignee | ||
Comment 7•24 years ago
|
||
| Assignee | ||
Comment 8•24 years ago
|
||
shanjian: can you review my patch?
Comment 9•24 years ago
|
||
That's a good catch. r=shanjian
Updated•24 years ago
|
Attachment #50189 -
Flags: review+
| Assignee | ||
Comment 10•24 years ago
|
||
waterson: can you /sr=?
Comment 11•24 years ago
|
||
Comment on attachment 50189 [details] [diff] [review]
Need to specify mIMECompUnicode->mCapacity in byte
sr=waterson
Attachment #50189 -
Flags: superreview+
| Assignee | ||
Comment 12•24 years ago
|
||
checked into the trunk.
Status: ASSIGNED → RESOLVED
Closed: 24 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•