Skip to content
Snippets Groups Projects
Commit 058773f6 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

rm 'using'

parent 9fa19e72
No related branches found
No related tags found
1 merge request!2442SetView, StackedFrames: preparations for separating c'tor and update fcts
...@@ -18,11 +18,9 @@ ...@@ -18,11 +18,9 @@
#include <QFormLayout> #include <QFormLayout>
#include <QLabel> #include <QLabel>
using std::function; QComboBox* GUI::Util::createComboBox(std::function<ComboProperty()> comboFunction,
std::function<void(const QString&)> slot, bool inScrollArea,
QComboBox* GUI::Util::createComboBox(function<ComboProperty()> comboFunction, QVector<std::function<void()>>* updaters, QString tooltip)
function<void(const QString&)> slot, bool inScrollArea,
QVector<function<void()>>* updaters, QString tooltip)
{ {
auto* combo = new QComboBox; auto* combo = new QComboBox;
combo->addItems(comboFunction().values()); combo->addItems(comboFunction().values());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment