Files
UnrealEngineUWP/Engine/Source/Developer/SourceControl/Private/SourceControlPreferences.cpp
luc eygasier abfd119ea2 Enabled Uncontrolled Changelists by default.
Adds setting to disable uncontrolled changelists.

#rb Patrick.Laflamme
#jira UE-163064
#preflight 6328649b8c3def91aa6d9576
#changelist validated

[CL 22086935 by luc eygasier in ue5-main branch]
2022-09-19 21:54:38 -04:00

19 lines
525 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "SourceControlPreferences.h"
bool USourceControlPreferences::IsValidationTagEnabled()
{
return GetDefault<USourceControlPreferences>()->bEnableValidationTag;
}
bool USourceControlPreferences::ShouldDeleteNewFilesOnRevert()
{
return GetDefault<USourceControlPreferences>()->bShouldDeleteNewFilesOnRevert;
}
bool USourceControlPreferences::AreUncontrolledChangelistsEnabled()
{
return GetDefault<USourceControlPreferences>()->bEnableUncontrolledChangelists;
}