summaryrefslogtreecommitdiff
path: root/src/organizercore.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/organizercore.cpp
parentc82c7af678c088a6b94fc8a4a0f31fc9498e8220 (diff)
changed enum case to follow convention
Diffstat (limited to 'src/organizercore.cpp')
-rw-r--r--src/organizercore.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/organizercore.cpp b/src/organizercore.cpp
index a10c23d7..04c94164 100644
--- a/src/organizercore.cpp
+++ b/src/organizercore.cpp
@@ -279,11 +279,11 @@ bool GetFileExecutionContext(
(extension.compare("bat", Qt::CaseInsensitive) == 0)) {
binaryInfo = QFileInfo("C:\\Windows\\System32\\cmd.exe");
arguments = QString("/C \"%1\"").arg(QDir::toNativeSeparators(targetInfo.absoluteFilePath()));
- type = FileExecutionTypes::executable;
+ type = FileExecutionTypes::Executable;
return true;
} else if (extension.compare("exe", Qt::CaseInsensitive) == 0) {
binaryInfo = targetInfo;
- type = FileExecutionTypes::executable;
+ type = FileExecutionTypes::Executable;
return true;
} else if (extension.compare("jar", Qt::CaseInsensitive) == 0) {
// types that need to be injected into
@@ -323,10 +323,10 @@ bool GetFileExecutionContext(
arguments = QString("\"%1\"").arg(QDir::toNativeSeparators(targetInfo.absoluteFilePath()));
}
- type = FileExecutionTypes::executable;
+ type = FileExecutionTypes::Executable;
return true;
} else {
- type = FileExecutionTypes::other;
+ type = FileExecutionTypes::Other;
return true;
}
}
@@ -1461,7 +1461,7 @@ bool OrganizerCore::executeFileVirtualized(
switch (type)
{
- case FileExecutionTypes::executable: {
+ case FileExecutionTypes::Executable: {
spawnBinaryDirect(
binaryInfo, arguments, currentProfile()->name(),
targetInfo.absolutePath(), "", "");
@@ -1469,7 +1469,7 @@ bool OrganizerCore::executeFileVirtualized(
return true;
}
- case FileExecutionTypes::other: {
+ case FileExecutionTypes::Other: {
::ShellExecuteW(nullptr, L"open",
ToWString(targetInfo.absoluteFilePath()).c_str(),
nullptr, nullptr, SW_SHOWNORMAL);