summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2019-05-26 05:31:02 -0400
committerisanae <14251494+isanae@users.noreply.github.com>2019-05-26 05:31:02 -0400
commit0439e18fe4cd2500c4ab6b3ff219c53153cf2175 (patch)
tree9f7d3a29b137d65142662d466b92924046e3650d /src/mainwindow.cpp
parentc82c7af678c088a6b94fc8a4a0f31fc9498e8220 (diff)
changed enum case to follow convention
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 94cbe9b1..b1728617 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -5163,7 +5163,7 @@ void MainWindow::addAsExecutable()
switch (type)
{
- case FileExecutionTypes::executable: {
+ case FileExecutionTypes::Executable: {
QString name = QInputDialog::getText(this, tr("Enter Name"),
tr("Please enter a name for the executable"), QLineEdit::Normal,
targetInfo.baseName());
@@ -5182,7 +5182,7 @@ void MainWindow::addAsExecutable()
break;
}
- case FileExecutionTypes::other: // fall-through
+ case FileExecutionTypes::Other: // fall-through
default: {
QMessageBox::information(this, tr("Not an executable"), tr("This is not a recognized executable."));
break;