Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Donald Haase
Cockatrice
Commits
2a9945ac
Commit
2a9945ac
authored
Apr 17, 2015
by
Fabio Bas
Browse files
Reorder member initialization
parent
1b9d8352
Changes
1
Hide whitespace changes
Inline
Side-by-side
cockatrice/src/zoneviewwidget.cpp
View file @
2a9945ac
...
...
@@ -57,7 +57,7 @@ void TitleLabel::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
}
ZoneViewWidget
::
ZoneViewWidget
(
Player
*
_player
,
CardZone
*
_origZone
,
int
numberCards
,
bool
_revealZone
,
bool
_writeableRevealZone
,
const
QList
<
const
ServerInfo_Card
*>
&
cardList
)
:
QGraphicsWidget
(
0
,
Qt
::
Tool
|
Qt
::
FramelessWindowHint
),
player
(
_player
),
canBeShuffled
(
_origZone
->
getIsShufflable
())
:
QGraphicsWidget
(
0
,
Qt
::
Tool
|
Qt
::
FramelessWindowHint
),
canBeShuffled
(
_origZone
->
getIsShufflable
())
,
player
(
_player
)
{
setAcceptHoverEvents
(
true
);
setAttribute
(
Qt
::
WA_DeleteOnClose
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment