Changeset 104999 in vbox
- Timestamp:
- Jun 24, 2024 2:33:58 PM (9 months ago)
- svn:sync-xref-src-repo-rev:
- 163617
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/widgets
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIFormEditorWidget.cpp
r104998 r104999 666 666 || !parent()->parent()) 667 667 break; 668 UIFormEditorView *pView = qobject_cast<UIFormEditorView*>(parent()->parent());668 QITableView *pView = qobject_cast<QITableView*>(parent()->parent()); 669 669 670 670 /* Get the proxy model: */ … … 1711 1711 } 1712 1712 1713 UIFormEditorView *UIFormEditorWidget::view() const1713 QITableView *UIFormEditorWidget::view() const 1714 1714 { 1715 1715 return m_pTableView; -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIFormEditorWidget.h
r104998 r104999 41 41 /* Forward declarations: */ 42 42 class QHeaderView; 43 class QITableView; 43 44 class UIFormEditorModel; 44 class UIFormEditorView;45 45 class UINotificationCenter; 46 46 class CForm; … … 64 64 65 65 /** Returns table-view reference. */ 66 UIFormEditorView *view() const;66 QITableView *view() const; 67 67 /** Returns horizontal header reference. */ 68 68 QHeaderView *horizontalHeader() const; … … 93 93 94 94 /** Holds the table-view instance. */ 95 UIFormEditorView*m_pTableView;95 QITableView *m_pTableView; 96 96 /** Holds the table-model instance. */ 97 97 UIFormEditorModel *m_pTableModel;
Note:
See TracChangeset
for help on using the changeset viewer.