mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-11 07:29:38 -05:00
20 lines
309 B
C++
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;
|
|
}
|