diff -r 1d12d96fdfb5 -r 1f5e22508b46 podcatcher_qt/src/podcatcherwin.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/podcatcher_qt/src/podcatcherwin.cpp Mon Aug 23 06:14:01 2010 +0200 @@ -0,0 +1,14 @@ +#include "podcatcherwin.h" +#include "ui_podcatcherwin.h" + +PodcatcherWin::PodcatcherWin(QWidget *parent) : + QMainWindow(parent), + ui(new Ui::PodcatcherWin) +{ + ui->setupUi(this); +} + +PodcatcherWin::~PodcatcherWin() +{ + delete ui; +}