From kde-commits Fri Jun 06 22:21:52 2003 From: Mario Scalas Date: Fri, 06 Jun 2003 22:21:52 +0000 To: kde-commits Subject: kdevelop/parts/cvs X-MARC-Message: https://marc.info/?l=kde-commits&m=105493811909071 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?"),