summaryrefslogtreecommitdiff
path: root/starmath/inc/node.hxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2011-03-23 10:57:00 +0100
committerLuboš Luňák <l.lunak@suse.cz>2011-03-24 18:19:53 +0100
commit572aed1751b98cf3299e06e6986366cf1dfc50d1 (patch)
tree9612ee448592bf4fb6a8779fbdf1aac96afbbece /starmath/inc/node.hxx
parentf7b372814e49fc5dfa602ff5291d2a54e648a13b (diff)
remove virtual from operator=
Completely pointless, no inherited class overrides it, in fact nothing even seems to use it, and it generates a warning with -Woverloaded-virtual.
Diffstat (limited to 'starmath/inc/node.hxx')
-rw-r--r--starmath/inc/node.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/inc/node.hxx b/starmath/inc/node.hxx
index c108016d75bb..83e54451764e 100644
--- a/starmath/inc/node.hxx
+++ b/starmath/inc/node.hxx
@@ -329,7 +329,7 @@ public:
void SetSubNodes(SmNode *pFirst, SmNode *pSecond, SmNode *pThird = NULL);
void SetSubNodes(const SmNodeArray &rNodeArray);
- virtual SmStructureNode & operator = ( const SmStructureNode &rNode );
+ SmStructureNode & operator = ( const SmStructureNode &rNode );
virtual void GetAccessibleText( String &rText ) const;