Skip to content
Snippets Groups Projects
Commit 73dda941 authored by Richard Linden's avatar Richard Linden
Browse files

SOCIAL-551 WIP Add buttons to open people and profile windows

add URL accessor for web content floaters
parent f3238a70
No related branches found
No related tags found
No related merge requests found
...@@ -400,3 +400,8 @@ void LLFloaterWebContent::onPopExternal() ...@@ -400,3 +400,8 @@ void LLFloaterWebContent::onPopExternal()
LLWeb::loadURLExternal( url ); LLWeb::loadURLExternal( url );
}; };
} }
std::string LLFloaterWebContent::getURL() const
{
return mAddressCombo->getValue().asString();
}
...@@ -65,6 +65,7 @@ class LLFloaterWebContent : ...@@ -65,6 +65,7 @@ class LLFloaterWebContent :
void onClickStop(); void onClickStop();
void onEnterAddress(); void onEnterAddress();
void onPopExternal(); void onPopExternal();
std::string getURL() const;
private: private:
void open_media(const std::string& media_url, const std::string& target); void open_media(const std::string& media_url, const std::string& target);
......
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