ToastFreeware
/
toast
/
confclerk.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
added application icon
[toast/confclerk.git]
/
src
/
app
/
main.cpp
1
#include <mainwindow.h>
2
3
#include <QtGui/QApplication>
4
5
int main(int argc, char *argv[])
6
{
7
Q_INIT_RESOURCE(icons);
8
9
QApplication a(argc, argv);
10
QApplication::setWindowIcon(QIcon(":/icons/fosdem.png"));
11
12
MainWindow w;
13
w.show();
14
return a.exec();
15
}
16