diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-03-02 16:37:32 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-03-05 11:18:10 +0900 |
commit | cb3ca8962d4572928ee2b6a5ceb33aca2c3b01b3 (patch) | |
tree | 90f8b45542e36c7d7589028c43ca396791b299c0 /kontact | |
parent | 61bec1acc6b601bc57a3b73bcc736c344a9e4c18 (diff) | |
download | tdepim-cb3ca8962d4572928ee2b6a5ceb33aca2c3b01b3.tar.gz tdepim-cb3ca8962d4572928ee2b6a5ceb33aca2c3b01b3.zip |
Fixed incorrect update of KNote "last modified" field caused by the lauch of KNotes. This resolves issue #38.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit d1a4daaee61fc8dda57f11da1856e5fbe1725fca)
Diffstat (limited to 'kontact')
-rw-r--r-- | kontact/plugins/knotes/knotes_part_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kontact/plugins/knotes/knotes_part_p.h b/kontact/plugins/knotes/knotes_part_p.h index aa5b602cb..9a30d715e 100644 --- a/kontact/plugins/knotes/knotes_part_p.h +++ b/kontact/plugins/knotes/knotes_part_p.h @@ -71,7 +71,7 @@ class KNotesIconViewItem : public TDEIconViewItem TQPixmap icon = TDEGlobal::iconLoader()->loadIcon( "knotes", TDEIcon::Desktop ); icon = effect.apply( icon, TDEIconEffect::Colorize, 1, color, false ); setPixmap( icon ); - setText( journal->summary() ); + TDEIconViewItem::setText( journal->summary() ); } KCal::Journal *journal() |