summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-03 16:24:30 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-03 16:24:30 +0100
commit196386efb6592c8ca43d40e27f7888d4809f500c (patch)
tree0aa112229f50774a6fa4b8c5e9f5bf4b152ea86c
parentb9fbf2b3a546d7d5a425692b8d5f4a43bc297a7a (diff)
fdo#74366# Determining bMail was accidentally inverted
...in 64b720dce8d3087ed62da815ecae1375b45149be "Related: fdo#38838 remove UniString::SearchAscii" Change-Id: I814d832dc88704670a04fdc7f3edd1296dfda991
-rw-r--r--cui/source/dialogs/hlmailtp.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/dialogs/hlmailtp.cxx b/cui/source/dialogs/hlmailtp.cxx
index cfc990a7a6e4..10ecdb06ec3d 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);