mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
[spellcheck] Fixed replacing words in multiple lines text.
This commit is contained in:
parent
67a08d237d
commit
785b9fcdbe
|
@ -17,7 +17,7 @@
|
|||
<item>
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="text">
|
||||
<string><html><head/><body><p><span style=" font-weight:600;">Dictionary path</span></p></body></html></string>
|
||||
<string><b>Dictionary path</b></string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
|
|
@ -221,11 +221,9 @@ void Speller::replaceWord()
|
|||
|
||||
text.replace(m_startPos, m_endPos - m_startPos, word);
|
||||
text.replace(QLatin1Char('\\'), QLatin1String("\\\\"));
|
||||
text.replace(QLatin1Char('\n'), QLatin1String("\\n"));
|
||||
text.replace(QLatin1Char('\''), QLatin1String("\\'"));
|
||||
|
||||
word.replace(QLatin1Char('\\'), QLatin1String("\\\\"));
|
||||
word.replace(QLatin1Char('\''), QLatin1String("\\'"));
|
||||
|
||||
m_element.evaluateJavaScript(QString("this.value='%1'").arg(text));
|
||||
m_element.evaluateJavaScript(QString("this.selectionStart=this.selectionEnd=%1").arg(cursorPos));
|
||||
}
|
||||
|
|
|
@ -8,6 +8,10 @@
|
|||
<form action="http://www.qupzilla.com/" method="post">
|
||||
Username: <input type="text" name="user" /><br/>
|
||||
Password: <input type="password" name="pass" />
|
||||
<br/>
|
||||
Text:
|
||||
<textarea cols="50" rows="6" spellcheck="yes"></textarea>
|
||||
<br/>
|
||||
<input type="submit" value="Send" />
|
||||
</form>
|
||||
<p>
|
||||
|
|
|
@ -4247,10 +4247,6 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla
|
|||
<source>SpellCheck</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><html><head/><body><p><span style=" font-weight:600;">Dictionary path</span></p></body></html></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Change...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
|
@ -4283,6 +4279,10 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla
|
|||
<source>Add new word:</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Dictionary path</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>Speller</name>
|
||||
|
|
Loading…
Reference in New Issue
Block a user