From 425901fb98782cee340ec8e6145c9b721d79c5c5 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Thu, 2 Jun 2022 18:32:54 +0200 Subject: [PATCH] [partition] Fix up combo-box handling for replace-fs choice --- src/modules/partition/gui/ChoicePage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/partition/gui/ChoicePage.cpp b/src/modules/partition/gui/ChoicePage.cpp index 59e2c1122..2e2acd460 100644 --- a/src/modules/partition/gui/ChoicePage.cpp +++ b/src/modules/partition/gui/ChoicePage.cpp @@ -292,7 +292,7 @@ ChoicePage::setupChoices() // Also offer it for "replace auto* box = new QComboBox; box->addItems( m_config->eraseFsTypes() ); - connect( box, &QComboBox::currentTextChanged, m_config, &Config : setReplaceFsChoice ); + connect( box, &QComboBox::currentTextChanged, m_config, &Config::setReplaceFilesystemChoice ); connect( m_config, &Config::replaceModeFilesystemChanged, this, &ChoicePage::onActionChanged ); m_replaceButton->addOptionsComboBox( box ); }