| Summary: | Renaming a note opening it and editing its title does not rename it in the kontact notes view | ||
|---|---|---|---|
| Product: | [Applications] kontact | Reporter: | Vincenzo Ciancia <vincenzo_ml> |
| Component: | notes | Assignee: | Michael Brade <brade> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Fedora RPMs | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Vincenzo Ciancia
2006-01-10 23:21:15 UTC
SVN commit 496678 by brade:
Fixed #119889: when renaming a note within the note editor of Kontact update
the view as well (i.e., the listview item).
BUG: 119889
M +1 -1 knotes_part.cpp
--- branches/KDE/3.5/kdepim/kontact/plugins/knotes/knotes_part.cpp #496677:496678
@@ -338,7 +338,7 @@
mNoteEditDlg->setText( journal->description() );
if ( mNoteEditDlg->exec() == QDialog::Accepted ) {
- journal->setSummary( mNoteEditDlg->title() );
+ item->setText( mNoteEditDlg->title() );
journal->setDescription( mNoteEditDlg->text() );
mManager->save();
}
|