RetroShare/retroshare-gui/src/gui/settings/AboutPage.cpp

20 lines
309 B
C++
Raw Normal View History

2017-01-26 16:46:58 -05:00
#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;
}