AppFwk : Changed accessability from public to private for functions related to PdmUiTableViewDelegate

This commit is contained in:
Magne Sjaastad 2016-12-19 14:34:43 +01:00
parent d542537113
commit e002658dbd

View File

@ -82,8 +82,6 @@ public:
void selectedUiItems(std::vector<PdmUiItem*>& objects);
PdmUiFieldEditorHandle* getEditor(const QModelIndex &index);
QWidget* getEditorWidgetAndTransferOwnership(QWidget* parent, const QModelIndex &index);
void notifyDataChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight);
bool isRepresentingBoolean(const QModelIndex &index) const;
@ -92,6 +90,10 @@ private:
int getFieldIndex(PdmFieldHandle* field) const;
void recreateTableItemEditors();
friend class PdmUiTableViewDelegate;
QWidget* getEditorWidgetAndTransferOwnership(QWidget* parent, const QModelIndex &index);
PdmUiFieldEditorHandle* getEditor(const QModelIndex &index);
private:
PdmChildArrayFieldHandle* m_pdmList;
QString m_currentConfigName;