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
Education
Cantor
Commits
e6c4774b
Commit
e6c4774b
authored
Jan 19, 2022
by
Alexander Semke
Browse files
Fixed the signature of the virtual functions on luaexpression.h.
parent
c9ba1a37
Pipeline
#125685
passed with stage
in 23 minutes and 43 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/backends/lua/luaexpression.cpp
View file @
e6c4774b
...
...
@@ -37,7 +37,7 @@ void LuaExpression::evaluate()
session
()
->
enqueueExpression
(
this
);
}
void
LuaExpression
::
parseError
(
QString
&
error
)
void
LuaExpression
::
parseError
(
const
QString
&
error
)
{
qDebug
()
<<
error
;
setErrorMessage
(
error
);
...
...
src/backends/lua/luaexpression.h
View file @
e6c4774b
...
...
@@ -20,9 +20,8 @@ public:
void
evaluate
()
override
;
void
interrupt
()
override
;
void
parseOutput
(
const
QString
&
output
);
void
parseError
(
QString
&
error
);
void
parseOutput
(
const
QString
&
)
override
;
void
parseError
(
const
QString
&
)
override
;
};
#endif
/* _LUAEXPRESSION_H */
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