Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Plasma
Plasma Add-ons
Commits
b3b26e75
Commit
b3b26e75
authored
Oct 09, 2020
by
Alexander Lohnau
💬
Browse files
Use higher match priority and copy suggested text
parent
d67a5ba3
Changes
1
Hide whitespace changes
Inline
Side-by-side
runners/spellchecker/spellcheck.cpp
View file @
b3b26e75
...
...
@@ -223,7 +223,7 @@ void SpellCheckRunner::match(Plasma::RunnerContext &context)
const
bool
correct
=
speller
->
checkAndSuggest
(
query
,
suggestions
);
if
(
correct
)
{
Plasma
::
QueryMatch
match
(
this
);
match
.
setType
(
Plasma
::
QueryMatch
::
Informational
Match
);
match
.
setType
(
Plasma
::
QueryMatch
::
Exact
Match
);
match
.
setIconName
(
QStringLiteral
(
"checkbox"
));
match
.
setText
(
query
);
match
.
setSubtext
(
i18nc
(
"Term is spelled correctly"
,
"Correct"
));
...
...
@@ -232,7 +232,7 @@ void SpellCheckRunner::match(Plasma::RunnerContext &context)
}
else
{
for
(
const
auto
&
suggestion
:
qAsConst
(
suggestions
))
{
Plasma
::
QueryMatch
match
(
this
);
match
.
setType
(
Plasma
::
QueryMatch
::
Informational
Match
);
match
.
setType
(
Plasma
::
QueryMatch
::
Exact
Match
);
match
.
setIconName
(
QStringLiteral
(
"edit-rename"
));
match
.
setText
(
suggestion
);
match
.
setSubtext
(
i18n
(
"Suggested term"
));
...
...
@@ -242,7 +242,7 @@ void SpellCheckRunner::match(Plasma::RunnerContext &context)
}
}
else
{
Plasma
::
QueryMatch
match
(
this
);
match
.
setType
(
Plasma
::
QueryMatch
::
Informational
Match
);
match
.
setType
(
Plasma
::
QueryMatch
::
Exact
Match
);
match
.
setIconName
(
QStringLiteral
(
"data-error"
));
match
.
setText
(
i18n
(
"No dictionary found, please install hspell"
));
context
.
addMatch
(
match
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment