Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Education
KAlgebra
Commits
b41900d5
Commit
b41900d5
authored
Jul 20, 2015
by
Aleix Pol Gonzalez
🐧
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix porting issue
Export the whole url instead of just the query items
parent
bfe5f52a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/consolehtml.cpp
src/consolehtml.cpp
+2
-1
No files found.
src/consolehtml.cpp
View file @
b41900d5
...
...
@@ -121,8 +121,9 @@ bool ConsoleHtml::addOperation(const Analitza::Expression& e, const QString& inp
QUrlQuery
query
(
url
);
query
.
addQueryItem
(
"id"
,
opt
->
id
());
query
.
addQueryItem
(
"func"
,
lambdaexp
.
toString
());
url
.
setQuery
(
query
);
options
+=
i18n
(
" <a href='%1'>%2</a>"
,
query
.
toString
(),
opt
->
caption
());
options
+=
i18n
(
" <a href='%1'>%2</a>"
,
url
.
toString
(),
opt
->
caption
());
}
}
...
...
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