ToastFreeware
/
toast
/
confclerk.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
schedule.en.xml is now in resource
[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
Q_INIT_RESOURCE(maps);
9
Q_INIT_RESOURCE(schedule);
10
11
QApplication a(argc, argv);
12
QApplication::setWindowIcon(QIcon(":/icons/fosdem.png"));
13
14
MainWindow w;
15
w.show();
16
return a.exec();
17
}
18