summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/codegenerators/rubyclassdeclarationblock.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/codegenerators/rubyclassdeclarationblock.cpp')
-rw-r--r--umbrello/umbrello/codegenerators/rubyclassdeclarationblock.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/umbrello/umbrello/codegenerators/rubyclassdeclarationblock.cpp b/umbrello/umbrello/codegenerators/rubyclassdeclarationblock.cpp
index 89eb8bd2..f75ff165 100644
--- a/umbrello/umbrello/codegenerators/rubyclassdeclarationblock.cpp
+++ b/umbrello/umbrello/codegenerators/rubyclassdeclarationblock.cpp
@@ -79,10 +79,10 @@ void RubyClassDeclarationBlock::updateContent ( )
// COMMENT
TQString comment = c->getDoc();
- comment.tqreplace("@ref ", "");
- comment.tqreplace("@see", "_See_");
- comment.tqreplace("@short", "_Summary_");
- comment.tqreplace("@author", "_Author_");
+ comment.replace("@ref ", "");
+ comment.replace("@see", "_See_");
+ comment.replace("@short", "_Summary_");
+ comment.replace("@author", "_Author_");
if (isInterface)
getComment()->setText("Module " + RubyClassName + endLine + comment);