Skip to content

Commit 62c2a78

Browse files
committed
Final tweaks
1 parent 919f6ed commit 62c2a78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/openstudio_lib/LocationTabView.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -770,7 +770,7 @@ std::vector<model::DesignDay> LocationView::showDesignDaySelectionDialog(const s
770770
int rowCount = gridLayout->rowCount();
771771

772772
// ok button only imports the checked design days
773-
QPushButton* okButton = new QPushButton(tr("Ok"), &dialog);
773+
QPushButton* okButton = new QPushButton(tr("OK"), &dialog);
774774
connect(okButton, &QPushButton::clicked, [&dialog, &result, &allRadioButtons, &designDayMap]() {
775775
for (const auto& rb : allRadioButtons) {
776776
if (rb->isChecked()) {
@@ -789,7 +789,7 @@ std::vector<model::DesignDay> LocationView::showDesignDaySelectionDialog(const s
789789
QPushButton* cancelButton = new QPushButton(tr("Cancel"), &dialog);
790790
connect(cancelButton, &QPushButton::clicked, &dialog, &QDialog::reject);
791791

792-
// import all imports everythig
792+
// import all imports everything
793793
QPushButton* importAllButton = new QPushButton(tr("Import all"), &dialog);
794794
connect(importAllButton, &QPushButton::clicked, [&dialog, &result, &allDesignDays]() {
795795
result = allDesignDays;

0 commit comments

Comments
 (0)