[Uml-devel] kdesdk/umbrello/umbrello/codegenerators
Brian Thomas
thomas at mail630.gsfc.nasa.gov
Tue Nov 18 11:11:04 UTC 2003
CVS commit by thomas:
minor bug fix: updateMethodContent/updateContent should be virtual declartions
M +2 -2 cppheadercodeaccessormethod.h 1.3
M +2 -2 cppsourcecodeaccessormethod.h 1.3
M +2 -2 javacodeaccessormethod.h 1.3
--- kdesdk/umbrello/umbrello/codegenerators/cppheadercodeaccessormethod.h #1.2:1.3
@@ -42,6 +42,6 @@ public:
protected:
- void updateMethodDeclaration();
- void updateContent();
+ virtual void updateMethodDeclaration();
+ virtual void updateContent();
private:
--- kdesdk/umbrello/umbrello/codegenerators/cppsourcecodeaccessormethod.h #1.2:1.3
@@ -43,6 +43,6 @@ public:
protected:
- void updateMethodDeclaration();
- void updateContent();
+ virtual void updateMethodDeclaration();
+ virtual void updateContent();
private:
--- kdesdk/umbrello/umbrello/codegenerators/javacodeaccessormethod.h #1.2:1.3
@@ -52,6 +52,6 @@ protected:
virtual void setAttributesFromNode ( QDomElement & element);
- void updateMethodDeclaration();
- void updateContent();
+ virtual void updateMethodDeclaration();
+ virtual void updateContent();
private:
More information about the umbrello-devel
mailing list