Fixed XcodeSourceCodeAccessor compile error

#codereview Jamie.Dale

[CL 2059169 by Michael Trepka in Main branch]
This commit is contained in:
Michael Trepka
2014-04-29 21:56:21 -04:00
committed by UnrealBot
parent c5b6860c57
commit 2f52cea518
2 changed files with 5 additions and 0 deletions

View File

@@ -181,4 +181,8 @@ bool FXCodeSourceCodeAccessor::SaveAllOpenDocuments() const
return false;
}
void FXCodeSourceCodeAccessor::Tick(const float DeltaTime)
{
}
#undef LOCTEXT_NAMESPACE

View File

@@ -16,4 +16,5 @@ public:
virtual bool OpenFileAtLine(const FString& FullPath, int32 LineNumber, int32 ColumnNumber = 0) OVERRIDE;
virtual bool OpenSourceFiles(const TArray<FString>& AbsoluteSourcePaths) OVERRIDE;
virtual bool SaveAllOpenDocuments() const OVERRIDE;
virtual void Tick(const float DeltaTime) OVERRIDE;
};