aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/variablechooser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/utils/variablechooser.h')
-rw-r--r--src/libs/utils/variablechooser.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libs/utils/variablechooser.h b/src/libs/utils/variablechooser.h
index 1fe08a1e59..257dcea5e2 100644
--- a/src/libs/utils/variablechooser.h
+++ b/src/libs/utils/variablechooser.h
@@ -13,6 +13,8 @@ namespace Utils {
class MacroExpander;
+using MacroExpanderProvider = std::function<MacroExpander *()>;
+
namespace Internal { class VariableChooserPrivate; }
class QTCREATOR_UTILS_EXPORT VariableChooser : public QWidget
@@ -23,7 +25,7 @@ public:
explicit VariableChooser(QWidget *parent = nullptr);
~VariableChooser() override;
- void addMacroExpanderProvider(const std::function<MacroExpander *()> &provider);
+ void addMacroExpanderProvider(const MacroExpanderProvider &provider);
void addSupportedWidget(QWidget *textcontrol, const QByteArray &ownName = QByteArray());
static void addSupportForChildWidgets(QWidget *parent, MacroExpander *expander);