Make sure we set player to 0 when we delete it
[soundwave.git] / init.cpp
blob794ddba292b86716d0a81fec2318017e6c29af63
1 #include <QApplication>
2 #include "playlist.h"
4 //=========================================================
5 int main( int argc, char *argv[])
7 QApplication app( argc, argv );
8 QDialog *dlg = new Playlist();
9 dlg->show();
10 return app.exec();