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
3f9f5fa8
Commit
3f9f5fa8
authored
Nov 13, 2017
by
Kevin Funk
☕
Browse files
Port to CMake AUTOMOC
Fixes some CMake warnings
parent
7c8b2b4e
Changes
25
Hide whitespace changes
Inline
Side-by-side
src/backends/R/rcompletionobject.cpp
View file @
3f9f5fa8
...
...
@@ -60,4 +60,3 @@ void RCompletionObject::receiveCompletions(const QString& token,const QStringLis
emit
fetchingDone
();
}
#include
"rcompletionobject.moc"
src/backends/R/rexpression.cpp
View file @
3f9f5fa8
...
...
@@ -152,4 +152,3 @@ void RExpression::showFilesAsResult(const QStringList& files)
}
}
#include
"rexpression.moc"
src/backends/R/rserver/rserver.cpp
View file @
3f9f5fa8
...
...
@@ -559,4 +559,3 @@ void RServer::newPlotDevice()
runCommand
(
command
.
arg
(
m_curPlotFile
),
true
);
}
#include
"rserver.moc"
src/backends/R/rsession.cpp
View file @
3f9f5fa8
...
...
@@ -188,4 +188,3 @@ void RSession::sendInputToServer(const QString& input)
m_rServer
->
answerRequest
(
s
);
}
#include
"rsession.moc"
src/backends/julia/juliaexpression.cpp
View file @
3f9f5fa8
...
...
@@ -102,4 +102,3 @@ bool JuliaExpression::checkPlotShowingCommands()
return
false
;
}
#include
"juliaexpression.moc"
src/backends/julia/juliaserver/juliaserver.cpp
View file @
3f9f5fa8
...
...
@@ -131,4 +131,3 @@ bool JuliaServer::getWasException() const
return
m_was_exception
;
}
#include
"juliaserver.moc"
src/backends/julia/juliasession.cpp
View file @
3f9f5fa8
...
...
@@ -349,4 +349,3 @@ bool JuliaSession::integratePlots()
}
#include
"juliasession.moc"
src/backends/julia/tests/testjulia.cpp
View file @
3f9f5fa8
...
...
@@ -270,4 +270,3 @@ void TestJulia::testAutoCompletion()
QTEST_MAIN
(
TestJulia
)
#include
"testjulia.moc"
src/backends/lua/luaexpression.cpp
View file @
3f9f5fa8
...
...
@@ -98,4 +98,3 @@ void LuaExpression::execute(QString& ret, Cantor::Expression::Status& status)
lua_settop
(
m_L
,
top
);
}
#include
"luaexpression.moc"
src/backends/lua/luasession.cpp
View file @
3f9f5fa8
...
...
@@ -120,4 +120,3 @@ lua_State* LuaSession::getState() const
return
m_L
;
}
#include
"luasession.moc"
src/backends/maxima/maximaexpression.cpp
View file @
3f9f5fa8
...
...
@@ -641,4 +641,3 @@ QString MaximaExpression::additionalLatexHeaders()
return
QString
();
}
#include
"maximaexpression.moc"
src/backends/maxima/maximasession.cpp
View file @
3f9f5fa8
...
...
@@ -445,4 +445,3 @@ void MaximaSession::write(const QString& exp) {
#endif
}
#include
"maximasession.moc"
src/backends/maxima/testmaxima.cpp
View file @
3f9f5fa8
...
...
@@ -209,4 +209,3 @@ void TestMaxima::testSyntaxHelp()
QTEST_MAIN
(
TestMaxima
)
#include
"testmaxima.moc"
src/backends/null/nullexpression.cpp
View file @
3f9f5fa8
...
...
@@ -67,4 +67,3 @@ void NullExpression::evalFinished()
setStatus
(
Cantor
::
Expression
::
Done
);
}
#include
"nullexpression.moc"
src/backends/null/nullsession.cpp
View file @
3f9f5fa8
...
...
@@ -90,4 +90,3 @@ void NullSession::expressionFinished()
changeStatus
(
Cantor
::
Session
::
Done
);
}
#include
"nullsession.moc"
src/backends/octave/testoctave.cpp
View file @
3f9f5fa8
...
...
@@ -88,4 +88,3 @@ void TestOctave::testInvalidSyntax()
QTEST_MAIN
(
TestOctave
)
#include
"testoctave.moc"
src/backends/python/pythonbackend.cpp
View file @
3f9f5fa8
...
...
@@ -60,4 +60,3 @@ QWidget* PythonBackend::settingsWidget(QWidget* parent) const
return
widget
;
}
#include
"pythonbackend.moc"
src/backends/python/pythonsession.cpp
View file @
3f9f5fa8
...
...
@@ -427,4 +427,3 @@ QAbstractItemModel* PythonSession::variableModel()
return
m_variableModel
;
}
#include
"pythonsession.moc"
src/backends/python2/testpython2.cpp
View file @
3f9f5fa8
...
...
@@ -57,4 +57,3 @@ void TestPython2::testCodeWithComments()
QTEST_MAIN
(
TestPython2
)
#include
"testpython2.moc"
src/backends/python3/python3server/python3server.cpp
View file @
3f9f5fa8
...
...
@@ -64,4 +64,3 @@ QString Python3Server::getOutput() const
#include
"python3server.moc"
Prev
1
2
Next
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