mirror of https://github.com/stella-emu/stella.git
added basic valid URL checks to cartridge links
This commit is contained in:
parent
d1a01391b0
commit
b945e15adc
|
@ -1243,7 +1243,12 @@ void GameInfoDialog::eraseEEPROM()
|
|||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
void GameInfoDialog::updateLink()
|
||||
{
|
||||
myUrlButton->setEnabled(myUrl->getText() != EmptyString);
|
||||
string link = myUrl->getText();
|
||||
bool enable = startsWithIgnoreCase(link, "http://")
|
||||
|| startsWithIgnoreCase(link, "https://")
|
||||
|| startsWithIgnoreCase(link, "www.");
|
||||
|
||||
myUrlButton->setEnabled(enable);
|
||||
}
|
||||
|
||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
|
|
Loading…
Reference in New Issue