diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-21 18:37:47 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-21 18:37:47 +0200 |
commit | 90b1354688e988ba1311a5645f631d353fa7ff80 (patch) | |
tree | 5619e16c34d3f2f9142c270e2a906614a6d598a6 /Applications/FontEditor/FontEditor.h | |
parent | 77b9fa89dd36fcd56d956667a956ef7f2ee8f963 (diff) | |
download | serenity-90b1354688e988ba1311a5645f631d353fa7ff80.zip |
AK: Rename RetainPtr => RefPtr and Retained => NonnullRefPtr.
Diffstat (limited to 'Applications/FontEditor/FontEditor.h')
-rw-r--r-- | Applications/FontEditor/FontEditor.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Applications/FontEditor/FontEditor.h b/Applications/FontEditor/FontEditor.h index 9132c5029a..e6777c4b46 100644 --- a/Applications/FontEditor/FontEditor.h +++ b/Applications/FontEditor/FontEditor.h @@ -9,11 +9,11 @@ class GTextBox; class FontEditorWidget final : public GWidget { public: - FontEditorWidget(const String& path, RetainPtr<Font>&&, GWidget* parent = nullptr); + FontEditorWidget(const String& path, RefPtr<Font>&&, GWidget* parent = nullptr); virtual ~FontEditorWidget() override; private: - RetainPtr<Font> m_edited_font; + RefPtr<Font> m_edited_font; GlyphMapWidget* m_glyph_map_widget { nullptr }; GlyphEditorWidget* m_glyph_editor_widget { nullptr }; |