mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-14 04:19:12 +00:00
Change Window::setText -> setTitle
This commit is contained in:
parent
e8350fb51a
commit
4c8cea53df
@ -110,7 +110,7 @@ bool SkiaDisplay::isMaximized() const
|
||||
|
||||
void SkiaDisplay::setTitleBar(const std::string& title)
|
||||
{
|
||||
m_window.setText(title);
|
||||
m_window.setTitle(title);
|
||||
}
|
||||
|
||||
NativeCursor SkiaDisplay::nativeMouseCursor()
|
||||
|
@ -78,8 +78,8 @@ namespace she {
|
||||
return m_restoredSize;
|
||||
}
|
||||
|
||||
void setText(const std::string& text) {
|
||||
SetWindowText(m_hwnd, base::from_utf8(text).c_str());
|
||||
void setTitle(const std::string& title) {
|
||||
SetWindowText(m_hwnd, base::from_utf8(title).c_str());
|
||||
}
|
||||
|
||||
void captureMouse() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user