@@ -82,7 +82,7 @@ TraceDialog::TraceDialog(ApplicationController &controller, QWidget *parent) :
8282 m_app_type_label = new QLabel (tr (" Application Type:" ));
8383 m_gfxr_capture_file_on_device_directory_label = new QLabel (
8484 tr (" On Device GFXR Capture File Directory Name:" ));
85- m_capture_file_local_directory_label = new QLabel (tr (" Local Capture Save Location:" ));
85+ QLabel *capture_file_local_directory_label = new QLabel (tr (" Local Capture Save Location:" ));
8686
8787 m_dev_model = new QStandardItemModel ();
8888 m_pkg_model = new QStandardItemModel ();
@@ -209,12 +209,12 @@ TraceDialog::TraceDialog(ApplicationController &controller, QWidget *parent) :
209209 m_gfxr_capture_file_on_device_directory_label->hide ();
210210 m_gfxr_capture_file_directory_input_box->hide ();
211211
212- m_capture_file_local_directory_layout = new QHBoxLayout ();
212+ QHBoxLayout *capture_file_local_directory_layout = new QHBoxLayout ();
213213 m_capture_file_local_directory_input_box = new QLineEdit ();
214214 m_capture_file_local_directory_input_box->setPlaceholderText (
215215 " Input the location to save the directory to" );
216- m_capture_file_local_directory_layout ->addWidget (m_capture_file_local_directory_label );
217- m_capture_file_local_directory_layout ->addWidget (m_capture_file_local_directory_input_box);
216+ capture_file_local_directory_layout ->addWidget (capture_file_local_directory_label );
217+ capture_file_local_directory_layout ->addWidget (m_capture_file_local_directory_input_box);
218218
219219 m_button_layout->addWidget (m_run_button);
220220 m_button_layout->addWidget (m_capture_button);
@@ -227,7 +227,7 @@ TraceDialog::TraceDialog(ApplicationController &controller, QWidget *parent) :
227227 m_main_layout->addLayout (m_capture_warning_layout);
228228 m_main_layout->addLayout (m_pkg_layout);
229229 m_main_layout->addLayout (m_gfxr_capture_file_directory_layout);
230- m_main_layout->addLayout (m_capture_file_local_directory_layout );
230+ m_main_layout->addLayout (capture_file_local_directory_layout );
231231 m_main_layout->addLayout (m_args_layout);
232232
233233 m_main_layout->addLayout (m_type_layout);
0 commit comments