repo.or.cz
/
qsnippetsmanager.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Tooltips and fonts stuff.
[qsnippetsmanager.git]
/
main.cpp
blob
6e7efd975207b7f21796a1a9ed8eece2592f4c6c
1
#include <QtGui/QApplication>
2
#include
"mainwindow.h"
3
4
int
main
(
int
argc
,
char
*
argv
[])
5
{
6
QApplication
a
(
argc
,
argv
);
7
MainWindow w
;
8
w
.
show
();
9
return
a
.
exec
();
10
}