summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-03-26 11:54:10 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-03-26 11:54:55 +0100
commit5fb78604c1c3e91beb867c352928af9e1ef57a26 (patch)
tree7d6a0f7c1bfe2f2803f5f2ffb5741dd3c05c5818 /vcl
parentbc5060b32f08b0408fb929faea1f8140a58d3cc5 (diff)
Split TYPEINFO into plain and TYPEINFO_OVERRIDE
...where the latter contains SAL_OVERRIDE annotations Change-Id: Id64794b388d83dfe7026440e8b20a5b5efd412d1
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/edit/textund2.hxx12
-rw-r--r--vcl/source/edit/textundo.hxx2
2 files changed, 7 insertions, 7 deletions
diff --git a/vcl/source/edit/textund2.hxx b/vcl/source/edit/textund2.hxx
index 89151854f777..f8382db56904 100644
--- a/vcl/source/edit/textund2.hxx
+++ b/vcl/source/edit/textund2.hxx
@@ -31,7 +31,7 @@ private:
TextNode* mpNode; // points at the valid not-destroyed object
public:
- TYPEINFO();
+ TYPEINFO_OVERRIDE();
TextUndoDelPara( TextEngine* pTextEngine, TextNode* pNode, sal_uLong nPara );
~TextUndoDelPara();
@@ -49,7 +49,7 @@ private:
sal_uInt16 mnSepPos;
public:
- TYPEINFO();
+ TYPEINFO_OVERRIDE();
TextUndoConnectParas( TextEngine* pTextEngine, sal_uLong nPara, sal_uInt16 nSepPos );
~TextUndoConnectParas();
@@ -67,7 +67,7 @@ private:
sal_uInt16 mnSepPos;
public:
- TYPEINFO();
+ TYPEINFO_OVERRIDE();
TextUndoSplitPara( TextEngine* pTextEngine, sal_uLong nPara, sal_uInt16 nSepPos );
~TextUndoSplitPara();
@@ -85,7 +85,7 @@ private:
OUString maText;
public:
- TYPEINFO();
+ TYPEINFO_OVERRIDE();
TextUndoInsertChars( TextEngine* pTextEngine, const TextPaM& rTextPaM, const OUString& rStr );
virtual void Undo();
@@ -104,7 +104,7 @@ private:
OUString maText;
public:
- TYPEINFO();
+ TYPEINFO_OVERRIDE();
TextUndoRemoveChars( TextEngine* pTextEngine, const TextPaM& rTextPaM, const OUString& rStr );
virtual void Undo();
@@ -120,7 +120,7 @@ private:
TextSelection maSelection;
public:
- TYPEINFO();
+ TYPEINFO_OVERRIDE();
TextUndoSetAttribs( TextEngine* pTextEngine, const TextSelection& rESel );
~TextUndoSetAttribs();
diff --git a/vcl/source/edit/textundo.hxx b/vcl/source/edit/textundo.hxx
index 2ff08a2efa8d..c1385686163b 100644
--- a/vcl/source/edit/textundo.hxx
+++ b/vcl/source/edit/textundo.hxx
@@ -64,7 +64,7 @@ protected:
TEParaPortions* GetTEParaPortions() const { return mpTextEngine->mpTEParaPortions; }
public:
- TYPEINFO();
+ TYPEINFO_OVERRIDE();
TextUndo( TextEngine* pTextEngine );
virtual ~TextUndo();