summaryrefslogtreecommitdiff
path: root/sw/inc/IGrammarContact.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/inc/IGrammarContact.hxx')
-rw-r--r--sw/inc/IGrammarContact.hxx11
1 files changed, 5 insertions, 6 deletions
diff --git a/sw/inc/IGrammarContact.hxx b/sw/inc/IGrammarContact.hxx
index 83d0c59c83b9..68be355807ef 100644
--- a/sw/inc/IGrammarContact.hxx
+++ b/sw/inc/IGrammarContact.hxx
@@ -29,21 +29,20 @@ class SwGrammarMarkUp;
class IGrammarContact
{
public:
-
/** Update cursor position reacts to a change of the current input cursor
As long as the cursor in inside a paragraph, the grammar checking does
not show new grammar faults. When the cursor leaves the paragraph, these
faults are shown.
@returns void
*/
- virtual void updateCursorPosition( const SwPosition& rNewPos ) = 0;
+ virtual void updateCursorPosition(const SwPosition& rNewPos) = 0;
/** getGrammarCheck checks if the given text node is blocked by the current cursor
if not, the normal markup list is returned
if blocked, it will return a markup list "proxy"
@returns a markup list (grammar) for the given SwTextNode
*/
- virtual SwGrammarMarkUp* getGrammarCheck( SwTextNode& rTextNode, bool bCreate ) = 0;
+ virtual SwGrammarMarkUp* getGrammarCheck(SwTextNode& rTextNode, bool bCreate) = 0;
/** finishGrammarCheck() has to be called if a grammar checking has been completed
for a text node. If this text node has not been hidden by the current proxy list
@@ -51,7 +50,7 @@ public:
repaint will be triggered by a timer
@returns void
*/
- virtual void finishGrammarCheck( SwTextNode& rTextNode ) = 0;
+ virtual void finishGrammarCheck(SwTextNode& rTextNode) = 0;
public:
virtual ~IGrammarContact() {}
@@ -67,12 +66,12 @@ IGrammarContact* createGrammarContact();
/** getGrammarContact() delivers the grammar contact of the document (for a given textnode)
@returns grammar contact
*/
-IGrammarContact* getGrammarContact( const SwTextNode& );
+IGrammarContact* getGrammarContact(const SwTextNode&);
/** finishGrammarCheck() calls the same function of the grammar contact of the document (for a given textnode)
@returns void
*/
-void finishGrammarCheck( SwTextNode& );
+void finishGrammarCheck(SwTextNode&);
#endif // INCLUDED_SW_INC_IGRAMMARCONTACT_HXX