FileManager: Move DirectoryView into the FileManager namespace

This commit is contained in:
Andreas Kling 2020-09-17 15:26:00 +02:00
parent 8212ba467c
commit 07d4b41bac
Notes: sideshowbarker 2024-07-19 02:21:37 +09:00
3 changed files with 10 additions and 0 deletions

View file

@ -39,6 +39,8 @@
#include <stdio.h>
#include <unistd.h>
namespace FileManager {
NonnullRefPtr<GUI::Action> LauncherHandler::create_launch_action(Function<void(const LauncherHandler&)> launch_handler)
{
RefPtr<Gfx::Bitmap> icon;
@ -552,3 +554,5 @@ void DirectoryView::handle_drop(const GUI::ModelIndex& index, const GUI::DropEve
}
}
};
}