Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
KCalc
Commits
67ecaa9a
Commit
67ecaa9a
authored
Oct 28, 2022
by
Volker Krause
Browse files
Remove unnecessary I18N_NOOP
String extraction happens with EXTRACTATTR, not from this code.
parent
8d3b7e1f
Pipeline
#261688
passed with stage
in 2 minutes and 5 seconds
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
kcalc_const_menu.cpp
View file @
67ecaa9a
...
...
@@ -73,7 +73,7 @@ void KCalcConstMenu::init_consts()
if
(
!
e
.
isNull
()
&&
e
.
tagName
()
==
QLatin1String
(
"constant"
))
{
science_constant
tmp_const
;
tmp_const
.
name
=
I18N_NOOP
(
e
.
attributeNode
(
QStringLiteral
(
"name"
)).
value
()
)
;
tmp_const
.
name
=
e
.
attributeNode
(
QStringLiteral
(
"name"
)).
value
();
tmp_const
.
label
=
e
.
attributeNode
(
QStringLiteral
(
"symbol"
)).
value
();
tmp_const
.
value
=
e
.
attributeNode
(
QStringLiteral
(
"value"
)).
value
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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