diff options
Diffstat (limited to 'Userland/DevTools/HackStudio/Git/GitFilesView.h')
-rw-r--r-- | Userland/DevTools/HackStudio/Git/GitFilesView.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Userland/DevTools/HackStudio/Git/GitFilesView.h b/Userland/DevTools/HackStudio/Git/GitFilesView.h index 648cbfcb77..ddd0437020 100644 --- a/Userland/DevTools/HackStudio/Git/GitFilesView.h +++ b/Userland/DevTools/HackStudio/Git/GitFilesView.h @@ -6,14 +6,13 @@ #pragma once -#include <AK/LexicalPath.h> #include <LibGUI/ListView.h> #include <LibGfx/Bitmap.h> namespace HackStudio { // A "GitFileAction" is either the staging or the unstaging of a file. -using GitFileActionCallback = Function<void(const LexicalPath& file)>; +using GitFileActionCallback = Function<void(String const& file)>; class GitFilesView : public GUI::ListView { C_OBJECT(GitFilesView) |