| commit | ce64c678e7dcc188f38304f0813d1c7895e6832f | [log] |
|---|---|---|
| author | Caolán McNamara <caolanm@redhat.com> | Thu Sep 30 16:08:25 2021 +0100 |
| committer | Adolfo Jayme Barrientos <fitojb@ubuntu.com> | Fri Oct 01 18:58:44 2021 +0200 |
| tree | 3d530b4bf4b69155e281b8cc3f2f631944024fa3 | |
| parent | a701a3837676cd8cf80e6b1c4a38fa5b5a9701d1 [diff] |
Resolves: tdf#140992 Paste/Cut should mark Edit as modified Change-Id: Id56b5bf2e922394da7e730f4bab652808253c54e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122857 Reviewed-by: Michael Stahl <michael.stahl@allotropia.de> Tested-by: Jenkins (cherry picked from commit 236419fb117ce8cd96d181f0b1050d7bb6020a06) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122871 Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org> Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
diff --git a/vcl/source/app/salvtables.cxx b/vcl/source/app/salvtables.cxx index a66e951..1fe6cb3 100644 --- a/vcl/source/app/salvtables.cxx +++ b/vcl/source/app/salvtables.cxx
@@ -3336,11 +3336,19 @@ Edit& SalInstanceEntry::getEntry() { return *m_xEntry; } void SalInstanceEntry::fire_signal_changed() { signal_changed(); } void SalInstanceEntry::cut_clipboard() { m_xEntry->Cut(); } void SalInstanceEntry::cut_clipboard() { m_xEntry->Cut(); m_xEntry->Modify(); } void SalInstanceEntry::copy_clipboard() { m_xEntry->Copy(); } void SalInstanceEntry::paste_clipboard() { m_xEntry->Paste(); } void SalInstanceEntry::paste_clipboard() { m_xEntry->Paste(); m_xEntry->Modify(); } namespace {