@@ -40,13 +40,13 @@ GfxrVulkanCommandArgumentsFilterProxyModel *proxy_model,
4040GfxrVulkanCommandModel *command_hierarchy_model,
4141QWidget *parent) :
4242 m_vulkan_command_hierarchy(vulkan_command_hierarchy),
43- m_arg_proxy_Model (proxy_model),
43+ m_arg_proxy_model (proxy_model),
4444 m_command_hierarchy_model(command_hierarchy_model)
4545{
4646 m_command_hierarchy_view = new DiveTreeView (m_vulkan_command_hierarchy);
4747
48- m_arg_proxy_Model ->setSourceModel (m_command_hierarchy_model);
49- m_command_hierarchy_view->setModel (m_arg_proxy_Model );
48+ m_arg_proxy_model ->setSourceModel (m_command_hierarchy_model);
49+ m_command_hierarchy_view->setModel (m_arg_proxy_model );
5050
5151 m_search_trigger_button = new QPushButton;
5252 m_search_trigger_button->setObjectName (kGfxrVulkanCommandArgumentsSearchButtonName );
@@ -98,7 +98,7 @@ void GfxrVulkanCommandArgumentsTabView::OnSelectionChanged(const QModelIndex &in
9898{
9999 if (!index.isValid ())
100100 {
101- m_arg_proxy_Model ->SetTargetParentSourceIndex (QModelIndex ());
101+ m_arg_proxy_model ->SetTargetParentSourceIndex (QModelIndex ());
102102 return ;
103103 }
104104
@@ -116,7 +116,7 @@ void GfxrVulkanCommandArgumentsTabView::OnSelectionChanged(const QModelIndex &in
116116 }
117117
118118 // Always use the source_index, regardless of whether a proxy was involved.
119- m_arg_proxy_Model ->SetTargetParentSourceIndex (source_index);
119+ m_arg_proxy_model ->SetTargetParentSourceIndex (source_index);
120120
121121 uint32_t column_count = (uint32_t )m_command_hierarchy_model->columnCount (QModelIndex ());
122122 for (uint32_t column = 0 ; column < column_count; ++column)
0 commit comments