mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-01 01:27:10 -04:00
19 lines
309 B
C++
19 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;
|
|
}
|