-
-
Notifications
You must be signed in to change notification settings - Fork 491
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix not being able to set
FloatingImage
anchor point
[ci skip]
- Loading branch information
1 parent
19f0484
commit 8121e1f
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -88,9 +88,9 @@ FloatingImage::get_y() const | |
} | ||
|
||
void | ||
FloatingImage::set_anchor_point(int anchor) | ||
FloatingImage::set_anchor_point(int anchor_) | ||
{ | ||
anchor = static_cast<AnchorPoint>(anchor); | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
Vankata453
Author
Member
|
||
anchor = static_cast<AnchorPoint>(anchor_); | ||
} | ||
|
||
int | ||
|
Can you not use proper variable names?
m_anchor
for member?