File indexing completed on 2025-01-05 05:18:57
0001 // SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org> 0002 // 0003 // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL 0004 0005 #include "KLLMModelComboBox.h" 0006 using namespace KLLMWidgets; 0007 KLLMModelComboBox::KLLMModelComboBox(QWidget *parent) 0008 : QComboBox(parent) 0009 { 0010 } 0011 0012 KLLMModelComboBox::~KLLMModelComboBox() = default; 0013 0014 void KLLMModelComboBox::setModels(const QStringList &models) 0015 { 0016 addItems(models); 0017 } 0018 0019 #include "moc_KLLMModelComboBox.cpp"