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.
tdevelop/languages/cpp/app_templates/kmake/mainviewimp.cpp

24 lines
306 B

#include "mainviewimp.h"
#include <tqlabel.h>
#include <klocale.h>
MainViewImp::MainViewImp(TQWidget* tqparent, const char* name, WFlags fl)
: MainView(tqparent,name,fl)
{
}
MainViewImp::~MainViewImp()
{
}
void MainViewImp::slotHelloButtonClicked()
{
helloLabel->setText(i18n("Hello there."));
}