repo.or.cz
/
PACMAN.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
sauvegarde 4
[PACMAN.git]
/
engines
/
text_item.cpp
blob
ad83dc9a6365955d823c09f9a8aff3fcad9d4834
1
#include
"text_item.h"
2
3
using namespace
engine
;
4
5
TextItem
::
TextItem
(
QString text
,
QGraphicsItem
*
parent
) :
QGraphicsTextItem
(
parent
)
6
{
7
setPlainText
(
text
);
8
setDefaultTextColor
(
Qt
::
white
);
9
}