mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
60312f2c83
This feature isn't really that useful in practice, so let's remove it. (Other browsers haven't had this action for years either.)
26 lines
483 B
C++
26 lines
483 B
C++
/*
|
|
* Copyright (c) 2022, Filiph Sandström <filiph.sandstrom@filfatstudios.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "Settings.h"
|
|
|
|
namespace Browser {
|
|
|
|
Settings::Settings()
|
|
{
|
|
m_qsettings = new QSettings("Serenity", "Ladybird", this);
|
|
}
|
|
|
|
QString Settings::new_tab_page()
|
|
{
|
|
return m_qsettings->value("new_tab_page", "about:blank").toString();
|
|
}
|
|
|
|
void Settings::set_new_tab_page(QString const& page)
|
|
{
|
|
m_qsettings->setValue("new_tab_page", page);
|
|
}
|
|
|
|
}
|