fdo#74366# Determining bMail was accidentally inverted

...in 64b720dce8 "Related: fdo#38838 remove
UniString::SearchAscii"

Change-Id: I814d832dc88704670a04fdc7f3edd1296dfda991
This commit is contained in:
Stephan Bergmann
2014-02-03 16:24:30 +01:00
parent b9fbf2b3a5
commit 196386efb6

View File

@@ -201,7 +201,7 @@ void SvxHyperlinkMailTp::SetScheme(const OUString& rScheme)
//if rScheme is empty or unknown the default beaviour is like it where MAIL
const sal_Char sNewsScheme[] = INET_NEWS_SCHEME;
bool bMail = rScheme.startsWith(sNewsScheme);
bool bMail = !rScheme.startsWith(sNewsScheme);
//update protocol button selection:
maRbtMail.Check(bMail);