CVS commit by marios: Fixed the check for empty log message in the commit dialog. M +1 -1 commitdlg.cpp 1.9 --- kdevelop/parts/cvs/commitdlg.cpp #1.8:1.9 @@ -73,5 +73,5 @@ bool CommitDialog::mustAddToChangeLog() void CommitDialog::accept() { - if (logMessage().isEmpty()) { + if (textEdit->text().isNull() || textEdit->text().isEmpty()) { int s = KMessageBox::warningContinueCancel( this, i18n("You are committing your changes without any comment. This is not a good practice. Continue anyway?"),