mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-15 02:44:20 -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;
|
||
|
}
|