···11+diff --git a/src/libcalamares/GlobalStorage.h b/src/libcalamares/GlobalStorage.h
22+index 37ea332d2..b9e629350 100644
33+--- a/src/libcalamares/GlobalStorage.h
44++++ b/src/libcalamares/GlobalStorage.h
55+@@ -56,13 +56,6 @@ public:
66+ */
77+ explicit GlobalStorage( QObject* parent = nullptr );
88+99+- /** @brief Insert a key and value into the store
1010+- *
1111+- * The @p value is added to the store with key @p key. If @p key
1212+- * already exists in the store, its existing value is overwritten.
1313+- * The changed() signal is emitted regardless.
1414+- */
1515+- void insert( const QString& key, const QVariant& value );
1616+ /** @brief Removes a key and its value
1717+ *
1818+ * The @p key is removed from the store. If the @p key does not
1919+@@ -123,6 +116,14 @@ public:
2020+ QVariantMap data() const { return m; }
2121+2222+ public Q_SLOTS:
2323++ /** @brief Insert a key and value into the store
2424++ *
2525++ * The @p value is added to the store with key @p key. If @p key
2626++ * already exists in the store, its existing value is overwritten.
2727++ * The changed() signal is emitted regardless.
2828++ */
2929++ void insert( const QString& key, const QVariant& value );
3030++
3131+ /** @brief Does the store contain the given key?
3232+ *
3333+ * This can distinguish an explicitly-inserted QVariant() from