RetroShare/retroshare-gui/src/gui/settings/AboutPage.cpp
2017-01-26 22:46:58 +01:00

20 lines
309 B
C++

#include <iostream>
#include "AboutPage.h"
AboutPage::AboutPage(QWidget * parent , Qt::WindowFlags flags )
: ConfigPage(parent,flags)
{
ui.setupUi(this);
ui.widget->close_button->hide();
}
AboutPage::~AboutPage()
{
}
void AboutPage::load()
{
std::cerr << "Loading AboutPage!" << std::endl;
}