[+]Add signal
3 unresolved threads
3 unresolved threads
Merge request reports
Activity
Filter activity
- controls/CustomComboBoxPopup.cpp 0 → 100644
2 #include "ListModel.h" 3 #include <QStringListModel> 4 5 CustomComboBoxPopup::CustomComboBoxPopup(const QString &a_Caption,ListModel *model, QWidget *parent) 6 : QWidget (parent) 7 { 8 setFixedSize(parent->width(),parent->height()); 9 setObjectName("wgtComboBoxPopup"); 10 11 if(model != nullptr) 12 { 13 m_model = model; 14 } 15 else 16 { 17 m_model = new ListModel(parent); changed this line in version 3 of the diff
- controls/CustomComboBoxPopup.cpp 0 → 100644
7 { 8 setFixedSize(parent->width(),parent->height()); 9 setObjectName("wgtComboBoxPopup"); 10 11 if(model != nullptr) 12 { 13 m_model = model; 14 } 15 else 16 { 17 m_model = new ListModel(parent); 18 } 19 20 m_lblCaption = new QLabel(this); 21 m_lblCaption->setObjectName("lblCaption"); 22 m_lblCaption->setText(a_Caption); changed this line in version 3 of the diff
- controls/ListModel.cpp 0 → 100644
1 #include "ListModel.h" 2 3 4 ListModel::ListModel(QObject *parent):QAbstractListModel(parent) 5 { 6 DataModel tmpModel; 7 for(int i = 0;i<6;i++) 8 { 9 tmpModel.text = "kelvin-testnet.Cellframe"; changed this line in version 3 of the diff
mentioned in commit 6ed922ec