mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
14 lines
267 B
C++
14 lines
267 B
C++
#include "aboutpage.hpp"
|
|
|
|
namespace chatterino {
|
|
namespace widgets {
|
|
namespace settingspages {
|
|
|
|
AboutPage::AboutPage()
|
|
: SettingsPage("About", ":/images/about.svg")
|
|
{
|
|
}
|
|
} // namespace settingspages
|
|
} // namespace widgets
|
|
} // namespace chatterino
|