mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: Minor changes
This commit is contained in:
parent
4c8d7884ea
commit
c559bf1288
4 changed files with 19 additions and 1 deletions
|
@ -21,6 +21,12 @@
|
|||
|
||||
class CProfilesModel;
|
||||
|
||||
/**
|
||||
* Dialog displayed when editing existing profiles.
|
||||
*
|
||||
* \author Cedric 'Kervala' OCHS
|
||||
* \date 2016
|
||||
*/
|
||||
class CProfilesDialog : public QDialog, public Ui::ProfilesDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
|
|
@ -24,7 +24,7 @@ QVariant CProfilesModel::data(const QModelIndex &index, int role) const
|
|||
|
||||
const CProfile &profile = m_profiles.at(index.row());
|
||||
|
||||
return QString("%1 (%2)").arg(profile.name).arg(profile.id);
|
||||
return QString("%1 (#%2)").arg(profile.name).arg(profile.id);
|
||||
}
|
||||
|
||||
bool CProfilesModel::removeRows(int row, int count, const QModelIndex &parent)
|
||||
|
|
|
@ -3,6 +3,12 @@
|
|||
|
||||
#include "configfile.h"
|
||||
|
||||
/**
|
||||
* Profiles model
|
||||
*
|
||||
* \author Cedric 'Kervala' OCHS
|
||||
* \date 2016
|
||||
*/
|
||||
class CProfilesModel : public QAbstractListModel
|
||||
{
|
||||
public:
|
||||
|
|
|
@ -19,6 +19,12 @@
|
|||
|
||||
#include "ui_settings.h"
|
||||
|
||||
/**
|
||||
* Settings dialog
|
||||
*
|
||||
* \author Cedric 'Kervala' OCHS
|
||||
* \date 2016
|
||||
*/
|
||||
class CSettingsDialog : public QDialog, public Ui::SettingsDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
|
Loading…
Reference in a new issue