[Libreoffice-commits] core.git: cui/source
Stephan Bergmann
sbergman at redhat.com
Mon Feb 3 07:26:29 PST 2014
cui/source/dialogs/hlmailtp.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 196386efb6592c8ca43d40e27f7888d4809f500c
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Mon Feb 3 16:24:30 2014 +0100
fdo#74366# Determining bMail was accidentally inverted
...in 64b720dce8d3087ed62da815ecae1375b45149be "Related: fdo#38838 remove
UniString::SearchAscii"
Change-Id: I814d832dc88704670a04fdc7f3edd1296dfda991
diff --git a/cui/source/dialogs/hlmailtp.cxx b/cui/source/dialogs/hlmailtp.cxx
index cfc990a..10ecdb0 100644
--- a/cui/source/dialogs/hlmailtp.cxx
+++ b/cui/source/dialogs/hlmailtp.cxx
@@ -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);
More information about the Libreoffice-commits
mailing list