Bug 597525 - Remove GetDefaultValueFromContent method; r=ehsan

This commit is contained in:
Mounir Lamouri 2010-12-02 02:39:46 +01:00
Родитель 3d28e162ef
Коммит 8610bb5e16
3 изменённых файлов: 1 добавлений и 8 удалений

Просмотреть файл

@ -593,9 +593,6 @@ nsHTMLTextAreaElement::SetValueChanged(PRBool aValueChanged)
PRBool previousValue = mValueChanged;
mValueChanged = aValueChanged;
if (!aValueChanged && !mState->IsEmpty()) {
mState->EmptyValue();
}
if (mValueChanged != previousValue) {
nsEventStates states = NS_EVENT_STATE_MOZ_UI_VALID |

Просмотреть файл

@ -1718,9 +1718,7 @@ nsTextEditorState::GetValue(nsAString& aValue, PRBool aIgnoreWrap) const
mCachedValue.Truncate();
}
} else {
if (!mTextCtrlElement->ValueChanged() || !mValue) {
mTextCtrlElement->GetDefaultValueFromContent(aValue);
} else {
if (mValue) {
aValue = NS_ConvertUTF8toUTF16(*mValue);
}
}

Просмотреть файл

@ -158,8 +158,6 @@ public:
void SetValue(const nsAString& aValue, PRBool aUserInput);
void GetValue(nsAString& aValue, PRBool aIgnoreWrap) const;
void EmptyValue() { if (mValue) mValue->Truncate(); }
PRBool IsEmpty() const { return mValue ? mValue->IsEmpty() : PR_TRUE; }
nsresult CreatePlaceholderNode();