From kde-commits Sun Jun 08 16:02:11 2003 From: Mario Scalas Date: Sun, 08 Jun 2003 16:02:11 +0000 To: kde-commits Subject: kdevelop/parts/cvs X-MARC-Message: https://marc.info/?l=kde-commits&m=105508813924346 CVS commit by marios: Destroy (free) form when it is closed M +7 -3 commitdlg.cpp 1.10 --- kdevelop/parts/cvs/commitdlg.cpp #1.9:1.10 @@ -10,6 +10,4 @@ ***************************************************************************/ -#include "commitdlg.h" - #include #include @@ -23,4 +21,8 @@ #include +#include "commitdlg.h" + +//#include "ksyntaxhighlighter.h" + CommitDialog::CommitDialog() : QDialog(0, "", true) @@ -39,5 +41,5 @@ CommitDialog::CommitDialog() layout->addWidget(textEdit, 10); - checkAddToChangelog = new QCheckBox( "&Add entry to master Changelog too", this, "checkboxaddtochangelog" ); + checkAddToChangelog = new QCheckBox( i18n("&Add entry to master Changelog too"), this, "checkboxaddtochangelog" ); layout->addWidget( checkAddToChangelog, 0 ); @@ -54,4 +56,6 @@ CommitDialog::CommitDialog() layout->activate(); adjustSize(); + +// new KDictSpellingHighlighter( textEdit ); }