#include "form1impl.h"

#include <qlineedit.h>
#include <qlabel.h>

Form1Impl::Form1Impl( QWidget* parent, const char* name, WFlags fl )
  : Form1( parent, name, fl ) 
{
//  connect(button,SIGNAL(),SLOT());  
}

Form1Impl::~Form1Impl() {}

/** public slots: */
void Form1Impl::newSlot()
{
  textLabel1->setText(lineEdit1->text());
}

