repo.or.cz
/
openal-soft.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Don't rely on terminate in a catch block giving a useful message
[openal-soft.git]
/
utils
/
alsoft-config
/
main.cpp
blob
b48f94ec827033ef073fb3c7f060837e90b935ec
1
#include
"mainwindow.h"
2
#include <QApplication>
3
4
int
main
(
int
argc
,
char
*
argv
[])
5
{
6
QApplication
a
(
argc
,
argv
);
7
MainWindow w
;
8
w
.
show
();
9
10
return
a
.
exec
();
11
}