At runtime, Qt prints: ``` QObject::connect: No such signal QComboBox::highlighted(QString) ``` in `dialogclusteringhierarchical.cpp:72`. The correct signal is `QComboBox::highlighted(int)` or `QComboBox::textHighlighted(const QString &)` (Qt 5.14+).
At runtime, Qt prints:
in
dialogclusteringhierarchical.cpp:72. The correct signal isQComboBox::highlighted(int)orQComboBox::textHighlighted(const QString &)(Qt 5.14+).