summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/Wizards/WizardPage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibGUI/Wizards/WizardPage.cpp')
-rw-r--r--Userland/Libraries/LibGUI/Wizards/WizardPage.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Libraries/LibGUI/Wizards/WizardPage.cpp b/Userland/Libraries/LibGUI/Wizards/WizardPage.cpp
index a08f5e879f..d67ed97080 100644
--- a/Userland/Libraries/LibGUI/Wizards/WizardPage.cpp
+++ b/Userland/Libraries/LibGUI/Wizards/WizardPage.cpp
@@ -14,7 +14,7 @@
namespace GUI {
-WizardPage::WizardPage(const String& title_text, const String& subtitle_text)
+WizardPage::WizardPage(String const& title_text, String const& subtitle_text)
: AbstractWizardPage()
{
set_layout<VerticalBoxLayout>();
@@ -44,12 +44,12 @@ WizardPage::WizardPage(const String& title_text, const String& subtitle_text)
m_body_widget->layout()->set_margins(20);
}
-void WizardPage::set_page_title(const String& text)
+void WizardPage::set_page_title(String const& text)
{
m_title_label->set_text(text);
}
-void WizardPage::set_page_subtitle(const String& text)
+void WizardPage::set_page_subtitle(String const& text)
{
m_subtitle_label->set_text(text);
}