1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:27:43 +00:00

GTableView: Minor painting cleanup.

This commit is contained in:
Andreas Kling 2019-03-09 21:38:13 +01:00
parent 0a7137617d
commit 963e95cb1a
2 changed files with 11 additions and 2 deletions

10
LibGUI/GFilePicker.h Normal file
View file

@ -0,0 +1,10 @@
#include <LibGUI/GWindow.h>
class GFilePicker final : public GWindow {
public:
GFilePicker();
virtual ~GFilePicker() override;
private:
virtual const char* class_name() const override { return "GFilePicker"; }
};