Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MercurialSourceControl.uplugin
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"CreatedByURL" : "https://github.com/enlight/ue4-hg-plugin",
"Description" : "Allows the Editor to interact with the Mercurial distributed version control system. Supports basic add, remove, revert, commit operations, provides access to asset history, and enables built-in visual diffing of Blueprints.",
"Category" : "Editor.Source Control",
"EngineVersion" : "4.21.2",
"EngineVersion" : "4.22.0",

"Modules" :
[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,15 +142,15 @@ class FCommand : public IQueuedWork
/** Absolute path to the current content directory. */
FString ContentDirectory;

/** Will be set to true if the operation is performed successfully. */
bool bCommandSuccessful;

/** Executed after the operation completes. */
FSourceControlOperationComplete OperationCompleteDelegate;

/** Has the operation been completed? */
volatile int32 bExecuteProcessed;

/** Will be set to true if the operation is performed successfully. */
bool bCommandSuccessful;

/** Is this operation being performed synchronously or asynchronously? */
EConcurrency::Type Concurrency;
};
Expand Down