Skip to content

Commit

Permalink
Bug 1263653 - Fixed TSFTextStore.h compilation with mingw. r=masayuki
Browse files Browse the repository at this point in the history
  • Loading branch information
cjacek committed Apr 12, 2016
1 parent 1bf05a1 commit 4a851f2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion widget/windows/TSFTextStore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5304,7 +5304,7 @@ TSFTextStore::SetInputContext(nsWindowBase* aWidget,

if (aAction.mFocusChange != InputContextAction::FOCUS_NOT_CHANGED) {
if (sEnabledTextStore) {
RefPtr<TSFTextStore> textStore = sEnabledTextStore;
RefPtr<TSFTextStore> textStore(sEnabledTextStore);
textStore->SetInputScope(aContext.mHTMLInputType,
aContext.mHTMLInputInputmode);
}
Expand Down
12 changes: 6 additions & 6 deletions widget/windows/TSFTextStore.h
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class TSFTextStore final : public ITextStoreACP
if (!sEnabledTextStore) {
return;
}
RefPtr<TSFTextStore> textStore = sEnabledTextStore;
RefPtr<TSFTextStore> textStore(sEnabledTextStore);
textStore->CommitCompositionInternal(aDiscard);
}

Expand All @@ -136,7 +136,7 @@ class TSFTextStore final : public ITextStoreACP
if (!sEnabledTextStore) {
return NS_OK;
}
RefPtr<TSFTextStore> textStore = sEnabledTextStore;
RefPtr<TSFTextStore> textStore(sEnabledTextStore);
return textStore->OnTextChangeInternal(aIMENotification);
}

Expand All @@ -146,7 +146,7 @@ class TSFTextStore final : public ITextStoreACP
if (!sEnabledTextStore) {
return NS_OK;
}
RefPtr<TSFTextStore> textStore = sEnabledTextStore;
RefPtr<TSFTextStore> textStore(sEnabledTextStore);
return textStore->OnSelectionChangeInternal(aIMENotification);
}

Expand All @@ -156,7 +156,7 @@ class TSFTextStore final : public ITextStoreACP
if (!sEnabledTextStore) {
return NS_OK;
}
RefPtr<TSFTextStore> textStore = sEnabledTextStore;
RefPtr<TSFTextStore> textStore(sEnabledTextStore);
return textStore->OnLayoutChangeInternal();
}

Expand All @@ -166,7 +166,7 @@ class TSFTextStore final : public ITextStoreACP
if (!sEnabledTextStore) {
return NS_OK;
}
RefPtr<TSFTextStore> textStore = sEnabledTextStore;
RefPtr<TSFTextStore> textStore(sEnabledTextStore);
return textStore->OnUpdateCompositionInternal();
}

Expand All @@ -176,7 +176,7 @@ class TSFTextStore final : public ITextStoreACP
if (!sEnabledTextStore) {
return NS_OK;
}
RefPtr<TSFTextStore> textStore = sEnabledTextStore;
RefPtr<TSFTextStore> textStore(sEnabledTextStore);
return textStore->OnMouseButtonEventInternal(aIMENotification);
}

Expand Down

0 comments on commit 4a851f2

Please sign in to comment.