summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrij Mohan Lal Srivastava <contactbrijmohan@gmail.com>2014-11-16 03:21:06 +0530
committerBjörn Michaelsen <bjoern.michaelsen@canonical.com>2014-11-16 16:11:03 +0000
commit82d6ee7ce7576be6e7ef04b5011fda35f5378272 (patch)
tree4814f7e101dd67abb81cb1ce32c17264177c241c
parent8ecfdf9c23b79ffd50752defc78889736263451d (diff)
fdo#56116 : Names of bookmarks should allow all characters which
are valid in HTML anchor names (missing: ':' and '.') Change-Id: I44f1d1135067103fdcc7482793371c5b95c14cec Reviewed-on: https://gerrit.libreoffice.org/12466 Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com> Tested-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
-rw-r--r--sw/source/ui/misc/bookmark.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/misc/bookmark.cxx b/sw/source/ui/misc/bookmark.cxx
index b1b33a0cdcbf..3fff8c96cb9f 100644
--- a/sw/source/ui/misc/bookmark.cxx
+++ b/sw/source/ui/misc/bookmark.cxx
@@ -30,7 +30,7 @@
#include "IMark.hxx"
#include "globals.hrc"
-const OUString BookmarkCombo::aForbiddenChars("/\\@:*?\";,.#");
+const OUString BookmarkCombo::aForbiddenChars("/\\@*?\";,#");
IMPL_LINK( SwInsertBookmarkDlg, ModifyHdl, BookmarkCombo *, pBox )
{