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.
tdeedu/kanagram/src/newstuff.cpp

30 lines
550 B

#include "newstuff.h"
#include <tqwidget.h>
#include <tqpushbutton.h>
#include <kdebug.h>
#include <tdenewstuff/downloaddialog.h>
#include <tdenewstuff/knewstuff.h>
#include <tdelocale.h>
#include "kanagramsettings.h"
#include "newstuffdialog.h"
NewStuff::NewStuff(TQWidget *parent) : NewStuffWidget(parent)
{
connect(btnGetNew, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotGetNewVocabs()));
}
NewStuff::~NewStuff()
{
}
void NewStuff::slotGetNewVocabs()
{
NewStuffDialog *nsd = new NewStuffDialog();
nsd->download();
}
#include "newstuff.moc"