summaryrefslogtreecommitdiff
path: root/Applications/Calculator/CalculatorWidget.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-09-21 14:19:05 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-09-21 15:25:08 +0200
commitc7437f9caa5485d99e0101bfac98d968e767741f (patch)
tree0268e791f6d419da644eca6fc6789e5429c10848 /Applications/Calculator/CalculatorWidget.h
parent6b347747f2f912721bc076fcd4aabb8a4bfa9e98 (diff)
downloadserenity-c7437f9caa5485d99e0101bfac98d968e767741f.zip
LibGUI: Convert GLabel to ObjectPtr
Diffstat (limited to 'Applications/Calculator/CalculatorWidget.h')
-rw-r--r--Applications/Calculator/CalculatorWidget.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/Calculator/CalculatorWidget.h b/Applications/Calculator/CalculatorWidget.h
index 7ecfec5f0c..e167030cf8 100644
--- a/Applications/Calculator/CalculatorWidget.h
+++ b/Applications/Calculator/CalculatorWidget.h
@@ -26,5 +26,5 @@ private:
Keypad m_keypad;
GTextBox* m_entry { nullptr };
- GLabel* m_label { nullptr };
+ ObjectPtr<GLabel> m_label;
};