From ee6e5b784db5f0ef1a0c1a73176792cf7fb8f1c9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=BCrgen=20Spitzm=C3=BCller?= Date: Tue, 15 Mar 2011 11:26:14 +0000 Subject: [PATCH] * Inset.h: try to clarify isLetter() and isChar() a bit. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37933 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/Inset.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/insets/Inset.h b/src/insets/Inset.h index a35b5e8c90..7b2c04c627 100644 --- a/src/insets/Inset.h +++ b/src/insets/Inset.h @@ -429,11 +429,11 @@ public: virtual InsetLayout const & getLayout() const; /// Is this inset's layout defined in the document's textclass? bool undefined() const; - /// used to toggle insets - /// is the inset open? - /// should this inset be handled like a normal character + /// should this inset be handled like a normal character? + /// (a character can be a letter or punctuation) virtual bool isChar() const { return false; } /// is this equivalent to a letter? + /// (a letter is a character that is considered part of a word) virtual bool isLetter() const { return false; } /// is this equivalent to a space (which is BTW different from /// a line separator)? -- 2.39.2