mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 17:29:10 +00:00
Changed: #1409 Fixed some things for a sane compiler (Linux/gcc)
--HG-- branch : branch-tile-edit-ovqt-plugin
This commit is contained in:
parent
dfc1b0ba94
commit
17f1a286e2
2 changed files with 102 additions and 102 deletions
|
@ -247,10 +247,10 @@ void TileEditorMainWindow::onActionAddTile(int tabId)
|
|||
|
||||
void TileEditorMainWindow::changeActiveTileSet(const QModelIndex &newIndex, const QModelIndex &oldIndex)
|
||||
{
|
||||
QModelIndex &tile128Idx = newIndex.child(0,0);
|
||||
QModelIndex &tile256Idx = newIndex.child(1,0);
|
||||
QModelIndex &tileTransIdx = newIndex.child(2,0);
|
||||
QModelIndex &tileDispIdx = newIndex.child(3,0);
|
||||
const QModelIndex &tile128Idx = newIndex.child(0,0);
|
||||
const QModelIndex &tile256Idx = newIndex.child(1,0);
|
||||
const QModelIndex &tileTransIdx = newIndex.child(2,0);
|
||||
const QModelIndex &tileDispIdx = newIndex.child(3,0);
|
||||
|
||||
m_ui->listView128->setRootIndex(tile128Idx);
|
||||
m_ui->listView256->setRootIndex(tile256Idx);
|
||||
|
|
|
@ -28,8 +28,8 @@ class TileModel : public QAbstractItemModel
|
|||
Q_OBJECT
|
||||
|
||||
public:
|
||||
TileModel::TileModel(const QStringList &headers, QObject *parent);
|
||||
~TileModel();
|
||||
TileModel(const QStringList &headers, QObject *parent);
|
||||
~TileModel();
|
||||
|
||||
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
|
||||
Qt::ItemFlags flags(const QModelIndex &index) const;
|
||||
|
|
Loading…
Reference in a new issue