Skip to content
Snippets Groups Projects
Commit 109aa311 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Merge remote-tracking branch 'origin/main'

parents 14883613 cffe264c
No related branches found
No related tags found
No related merge requests found
......@@ -175,6 +175,6 @@ NSWindowRef getMainAppWindow();
GLViewRef getGLView();
unsigned int getModifiers();
void setTitle(const std::string& title);
void setWindowTitle(const std::string& title);
#endif // LL_LLWINDOWMACOSX_OBJC_H
......@@ -442,7 +442,7 @@ unsigned int getModifiers()
return [NSEvent modifierFlags];
}
void setTitle(const std::string& title)
void setWindowTitle(const std::string& title)
{
@autoreleasepool {
LLNSWindow *winRef = [(LLAppDelegate*)[[LLApplication sharedApplication] delegate] window];
......
......@@ -1257,7 +1257,7 @@ BOOL LLWindowMacOSX::copyTextToClipboard(const LLWString &s)
void LLWindowMacOSX::setTitle(const std::string title)
{
setTitle(title);
setWindowTitle(title);
}
// protected
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment