diff options
author | Andreas Kling <kling@serenityos.org> | 2020-02-02 15:07:41 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-02 15:15:33 +0100 |
commit | c5bd9d4ed1d80ac91d46146565127b0c185f1b43 (patch) | |
tree | b4ee9ba5999778450f8eb4006df89110617b4a10 /Applications/PaintBrush/PickerTool.h | |
parent | 2d39da5405a4527e91e853ddb1e56a539c96c6c1 (diff) | |
download | serenity-c5bd9d4ed1d80ac91d46146565127b0c185f1b43.zip |
LibGUI: Put all classes in the GUI namespace and remove the leading G
This took me a moment. Welcome to the new world of GUI::Widget! :^)
Diffstat (limited to 'Applications/PaintBrush/PickerTool.h')
-rw-r--r-- | Applications/PaintBrush/PickerTool.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/PaintBrush/PickerTool.h b/Applications/PaintBrush/PickerTool.h index f1d0846edb..6ae0244b97 100644 --- a/Applications/PaintBrush/PickerTool.h +++ b/Applications/PaintBrush/PickerTool.h @@ -33,7 +33,7 @@ public: PickerTool(); virtual ~PickerTool() override; - virtual void on_mousedown(GMouseEvent&) override; + virtual void on_mousedown(GUI::MouseEvent&) override; private: virtual const char* class_name() const override { return "PickerTool"; } |