summaryrefslogtreecommitdiff
path: root/Userland/DevTools/HackStudio/Git/GitFilesView.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/DevTools/HackStudio/Git/GitFilesView.cpp')
-rw-r--r--Userland/DevTools/HackStudio/Git/GitFilesView.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/DevTools/HackStudio/Git/GitFilesView.cpp b/Userland/DevTools/HackStudio/Git/GitFilesView.cpp
index b5b69f0adc..6fd455902c 100644
--- a/Userland/DevTools/HackStudio/Git/GitFilesView.cpp
+++ b/Userland/DevTools/HackStudio/Git/GitFilesView.cpp
@@ -56,7 +56,7 @@ void GitFilesView::mousedown_event(GUI::MouseEvent& event)
auto data = model()->index(item_index, model_column()).data();
VERIFY(data.is_string());
- m_action_callback(LexicalPath(data.to_string()));
+ m_action_callback(data.to_string());
}
};