repo.or.cz
/
soundwave.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Make sure we set player to 0 when we delete it
[soundwave.git]
/
init.cpp
blob
794ddba292b86716d0a81fec2318017e6c29af63
1
#include <QApplication>
2
#include
"playlist.h"
3
4
//=========================================================
5
int
main
(
int
argc
,
char
*
argv
[])
6
{
7
QApplication
app
(
argc
,
argv
);
8
QDialog
*
dlg
=
new
Playlist
();
9
dlg
->
show
();
10
return
app
.
exec
();
11
}
12