You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
302 B
24 lines
302 B
|
|
#include "mainviewimp.h"
|
|
#include <tqlabel.h>
|
|
#include <klocale.h>
|
|
|
|
MainViewImp::MainViewImp(TQWidget* parent, const char* name, WFlags fl)
|
|
: MainView(parent,name,fl)
|
|
{
|
|
}
|
|
|
|
MainViewImp::~MainViewImp()
|
|
{
|
|
}
|
|
|
|
void MainViewImp::slotHelloButtonClicked()
|
|
{
|
|
helloLabel->setText(i18n("Hello there."));
|
|
}
|
|
|
|
|
|
|
|
|
|
|