Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
alonsoJASL committed Nov 20, 2024
1 parent 5614da6 commit 417b399
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -348,13 +348,13 @@ std::string FourChamberGuidePointsView::GetShortcuts(){
}

void FourChamberGuidePointsView::LeftAtriumReactToToggle() {
if (m_Selector.radio_load_la->isChecked()) {
if (m_Controls.radio_load_la->isChecked()) {
QMessageBox::information(NULL, "Info", "Left Atrium selected");
}
}

void FourChamberGuidePointsView::RightAtriumReactToToggle() {
if (m_Selector.radio_load_ra->isChecked()){
if (m_Controls.radio_load_ra->isChecked()){
QMessageBox::information(NULL, "Info", "Right Atrium selected");
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ void FourChamberView::LoadDICOM() {
} else {

MITK_INFO << "Using MITK DICOM editor";
QString editor_id = "org.mitk.editors.dicomeditor";
QString editor_id = "org.mitk.editors.dicombrowser";
berry::IEditorInput::Pointer input(new berry::FileEditorInput(QString()));
this->GetSite()->GetPage()->OpenEditor(input, editor_id);

Expand Down

0 comments on commit 417b399

Please sign in to comment.