mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-13 22:04:09 +02:00
Renamed Windows Application to GUI Application
This commit is contained in:
parent
a51fa2b657
commit
8aba7f0d8e
3 changed files with 4 additions and 4 deletions
|
@ -253,7 +253,7 @@ namespace IDE
|
||||||
{
|
{
|
||||||
return ((mBuildKind == .Test) &&
|
return ((mBuildKind == .Test) &&
|
||||||
((project.mGeneralOptions.mTargetType == .BeefConsoleApplication) ||
|
((project.mGeneralOptions.mTargetType == .BeefConsoleApplication) ||
|
||||||
(project.mGeneralOptions.mTargetType == .BeefWindowsApplication) ||
|
(project.mGeneralOptions.mTargetType == .BeefGUIApplication) ||
|
||||||
(project.mGeneralOptions.mTargetType == .BeefConsoleApplication)));
|
(project.mGeneralOptions.mTargetType == .BeefConsoleApplication)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ namespace IDE.ui
|
||||||
public DarkComboBox mTargetComboBox;
|
public DarkComboBox mTargetComboBox;
|
||||||
static String[5] sApplicationTypeNames =
|
static String[5] sApplicationTypeNames =
|
||||||
.("Console Application",
|
.("Console Application",
|
||||||
"Windows Application",
|
"GUI Application",
|
||||||
"Library",
|
"Library",
|
||||||
"Dynamic Library",
|
"Dynamic Library",
|
||||||
"Custom Build");
|
"Custom Build");
|
||||||
|
@ -116,7 +116,7 @@ namespace IDE.ui
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
Project.TargetType targetType = .BeefWindowsApplication;
|
Project.TargetType targetType = .BeefGUIApplication;
|
||||||
for (var applicationTypeName in sApplicationTypeNames)
|
for (var applicationTypeName in sApplicationTypeNames)
|
||||||
{
|
{
|
||||||
if (applicationTypeName == mTargetComboBox.Label)
|
if (applicationTypeName == mTargetComboBox.Label)
|
||||||
|
|
|
@ -629,7 +629,7 @@ namespace IDE.ui
|
||||||
AddPropertiesItem(root, "Target Type", "mTargetType", scope String[]
|
AddPropertiesItem(root, "Target Type", "mTargetType", scope String[]
|
||||||
{
|
{
|
||||||
"Console Application",
|
"Console Application",
|
||||||
"Windows Application",
|
"GUI Application",
|
||||||
"Library",
|
"Library",
|
||||||
"Dynamic Library",
|
"Dynamic Library",
|
||||||
"Custom Build"
|
"Custom Build"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue