mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 22:32:46 +00:00
Bug 676450 - Fix printf format in nsGtkIMModule.cpp. r=masayuki
This commit is contained in:
parent
feef9bcb83
commit
56a42da678
@ -342,7 +342,7 @@ nsGtkIMModule::OnFocusWindow(nsWindow* aWindow)
|
||||
|
||||
PR_LOG(gGtkIMLog, PR_LOG_ALWAYS,
|
||||
("GtkIMModule(%p): OnFocusWindow, aWindow=%p, mLastFocusedWindow=%p",
|
||||
this, aWindow));
|
||||
this, aWindow, mLastFocusedWindow));
|
||||
mLastFocusedWindow = aWindow;
|
||||
Focus();
|
||||
}
|
||||
@ -550,7 +550,8 @@ nsGtkIMModule::SetInputMode(nsWindow* aCaller, const IMEContext* aContext)
|
||||
|
||||
PR_LOG(gGtkIMLog, PR_LOG_ALWAYS,
|
||||
("GtkIMModule(%p): SetInputMode, aCaller=%p, aState=%s mHTMLInputType=%s",
|
||||
this, aCaller, GetEnabledStateName(aContext->mStatus), aContext->mHTMLInputType.get()));
|
||||
this, aCaller, GetEnabledStateName(aContext->mStatus),
|
||||
NS_ConvertUTF16toUTF8(aContext->mHTMLInputType).get()));
|
||||
|
||||
if (aCaller != mLastFocusedWindow) {
|
||||
PR_LOG(gGtkIMLog, PR_LOG_ALWAYS,
|
||||
@ -726,8 +727,7 @@ nsGtkIMModule::Focus()
|
||||
GtkIMContext *im = GetContext();
|
||||
if (!im) {
|
||||
PR_LOG(gGtkIMLog, PR_LOG_ALWAYS,
|
||||
(" FAILED, there are no context",
|
||||
this));
|
||||
(" FAILED, there are no context"));
|
||||
return;
|
||||
}
|
||||
|
||||
@ -1119,7 +1119,7 @@ nsGtkIMModule::DispatchCompositionStart()
|
||||
}
|
||||
|
||||
PR_LOG(gGtkIMLog, PR_LOG_ALWAYS,
|
||||
(" mCompositionStart=%lu", mCompositionStart));
|
||||
(" mCompositionStart=%u", mCompositionStart));
|
||||
mIsComposing = PR_TRUE;
|
||||
nsCompositionEvent compEvent(PR_TRUE, NS_COMPOSITION_START,
|
||||
mLastFocusedWindow);
|
||||
@ -1329,7 +1329,7 @@ nsGtkIMModule::SetTextRangeList(nsTArray<nsTextRange> &aTextRangeList)
|
||||
aTextRangeList.AppendElement(range);
|
||||
|
||||
PR_LOG(gGtkIMLog, PR_LOG_ALWAYS,
|
||||
(" mStartOffset=%lu, mEndOffset=%lu, mRangeType=%s",
|
||||
(" mStartOffset=%u, mEndOffset=%u, mRangeType=%s",
|
||||
range.mStartOffset, range.mEndOffset,
|
||||
GetRangeTypeName(range.mRangeType)));
|
||||
} while (pango_attr_iterator_next(iter));
|
||||
@ -1347,7 +1347,7 @@ nsGtkIMModule::SetTextRangeList(nsTArray<nsTextRange> &aTextRangeList)
|
||||
aTextRangeList.AppendElement(range);
|
||||
|
||||
PR_LOG(gGtkIMLog, PR_LOG_ALWAYS,
|
||||
(" mStartOffset=%lu, mEndOffset=%lu, mRangeType=%s",
|
||||
(" mStartOffset=%u, mEndOffset=%u, mRangeType=%s",
|
||||
range.mStartOffset, range.mEndOffset,
|
||||
GetRangeTypeName(range.mRangeType)));
|
||||
|
||||
@ -1360,7 +1360,7 @@ void
|
||||
nsGtkIMModule::SetCursorPosition(PRUint32 aTargetOffset)
|
||||
{
|
||||
PR_LOG(gGtkIMLog, PR_LOG_ALWAYS,
|
||||
("GtkIMModule(%p): SetCursorPosition, aTargetOffset=%lu",
|
||||
("GtkIMModule(%p): SetCursorPosition, aTargetOffset=%u",
|
||||
this, aTargetOffset));
|
||||
|
||||
if (aTargetOffset == PR_UINT32_MAX) {
|
||||
|
Loading…
Reference in New Issue
Block a user