summaryrefslogtreecommitdiff
path: root/Applications/FontEditor/FontEditor.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-06-21 18:37:47 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-06-21 18:37:47 +0200
commit90b1354688e988ba1311a5645f631d353fa7ff80 (patch)
tree5619e16c34d3f2f9142c270e2a906614a6d598a6 /Applications/FontEditor/FontEditor.h
parent77b9fa89dd36fcd56d956667a956ef7f2ee8f963 (diff)
downloadserenity-90b1354688e988ba1311a5645f631d353fa7ff80.zip
AK: Rename RetainPtr => RefPtr and Retained => NonnullRefPtr.
Diffstat (limited to 'Applications/FontEditor/FontEditor.h')
-rw-r--r--Applications/FontEditor/FontEditor.h4
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 };