Skip to content

Commit cab82ce

Browse files
committed
Removed unnecessary forward declaration; fixed inconsistent function parameter names.
#3
1 parent 8da8625 commit cab82ce

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Source/TextAssetEditor/Private/Toolkits/TextAssetEditorToolkit.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ FString FTextAssetEditorToolkit::GetDocumentationLink() const
106106
}
107107

108108

109-
void FTextAssetEditorToolkit::RegisterTabSpawners(const TSharedRef<class FTabManager>& InTabManager)
109+
void FTextAssetEditorToolkit::RegisterTabSpawners(const TSharedRef<FTabManager>& InTabManager)
110110
{
111111
WorkspaceMenuCategory = InTabManager->AddLocalWorkspaceMenuCategory(LOCTEXT("WorkspaceMenu_TextAssetEditor", "Text Asset Editor"));
112112
auto WorkspaceMenuCategoryRef = WorkspaceMenuCategory.ToSharedRef();
@@ -120,7 +120,7 @@ void FTextAssetEditorToolkit::RegisterTabSpawners(const TSharedRef<class FTabMan
120120
}
121121

122122

123-
void FTextAssetEditorToolkit::UnregisterTabSpawners(const TSharedRef<class FTabManager>& InTabManager)
123+
void FTextAssetEditorToolkit::UnregisterTabSpawners(const TSharedRef<FTabManager>& InTabManager)
124124
{
125125
FAssetEditorToolkit::UnregisterTabSpawners(InTabManager);
126126

Source/TextAssetEditor/Private/Toolkits/TextAssetEditorToolkit.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ class FTextAssetEditorToolkit
5050
//~ FAssetEditorToolkit interface
5151

5252
virtual FString GetDocumentationLink() const override;
53-
virtual void RegisterTabSpawners(const TSharedRef<class FTabManager>& TabManager) override;
54-
virtual void UnregisterTabSpawners(const TSharedRef<class FTabManager>& TabManager) override;
53+
virtual void RegisterTabSpawners(const TSharedRef<FTabManager>& InTabManager) override;
54+
virtual void UnregisterTabSpawners(const TSharedRef<FTabManager>& InTabManager) override;
5555

5656
public:
5757

0 commit comments

Comments
 (0)