mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-29 19:20:09 +00:00
Fix TipWindow() ctor signature
This commit is contained in:
parent
cff735a7c8
commit
063f1d173c
@ -181,7 +181,7 @@ void TooltipManager::onTick()
|
||||
|
||||
// TipWindow
|
||||
|
||||
TipWindow::TipWindow(const char* text, gfx::Rect& target)
|
||||
TipWindow::TipWindow(const char* text, const gfx::Rect& target)
|
||||
: PopupWindow(text, kCloseOnClickInOtherWindow)
|
||||
, m_arrowAlign(0)
|
||||
, m_target(target)
|
||||
|
@ -56,7 +56,7 @@ namespace ui {
|
||||
|
||||
class TipWindow : public PopupWindow {
|
||||
public:
|
||||
TipWindow(const char* text, gfx::Rect& target);
|
||||
TipWindow(const char* text, const gfx::Rect& target);
|
||||
~TipWindow();
|
||||
|
||||
int getArrowAlign() const;
|
||||
|
Loading…
x
Reference in New Issue
Block a user