diff options
Diffstat (limited to 'languages/python/pythonimplementationwidget.cpp')
-rw-r--r-- | languages/python/pythonimplementationwidget.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/languages/python/pythonimplementationwidget.cpp b/languages/python/pythonimplementationwidget.cpp index 9e979f13..9d9b542a 100644 --- a/languages/python/pythonimplementationwidget.cpp +++ b/languages/python/pythonimplementationwidget.cpp @@ -51,9 +51,9 @@ TQStringList PythonImplementationWidget::createClassFiles() TQString template_py = "from qt import *\nfrom $BASEFILENAME$ import *\nclass $CLASSNAME$($BASECLASSNAME$):\n\n def __init__(self,tqparent,name):\n $BASECLASSNAME$.__init__(self,tqparent,name)\n \n\n\n"; TQFileInfo formInfo(m_formName); - template_py.tqreplace(TQRegExp("\\$BASEFILENAME\\$"), formInfo.baseName()+".py"); - template_py.tqreplace(TQRegExp("\\$CLASSNAME\\$"), classNameEdit->text()); - template_py.tqreplace(TQRegExp("\\$BASECLASSNAME\\$"), m_baseClassName); + template_py.replace(TQRegExp("\\$BASEFILENAME\\$"), formInfo.baseName()+".py"); + template_py.replace(TQRegExp("\\$CLASSNAME\\$"), classNameEdit->text()); + template_py.replace(TQRegExp("\\$BASECLASSNAME\\$"), m_baseClassName); template_py = FileTemplate::read(m_part, "py") + template_py; |