basctl/source/basicide/baside2b.cxx | 8 ++++++++ 1 file changed, 8 insertions(+)
New commits: commit 00e80df8fa4e6ae9f473376aa83e282e0fb5dbb0 Author: Noel Power <[email protected]> Date: Wed Mar 13 17:22:56 2013 +0000 make sure basic IDE cut/copy buttons on toolbar are refreshed fdo#30545 Change-Id: I483469f0b76ade7fb107c6f4ae5c28a4b03877b1 (cherry picked from commit 56f30adffa34e2f645646048747e3110a275b072) Reviewed-on: https://gerrit.libreoffice.org/2708 Reviewed-by: Fridrich Strba <[email protected]> Tested-by: Fridrich Strba <[email protected]> diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx index ffa93e4..9bac160 100644 --- a/basctl/source/basicide/baside2b.cxx +++ b/basctl/source/basicide/baside2b.cxx @@ -745,6 +745,14 @@ void EditorWindow::Notify( SfxBroadcaster& /*rBC*/, const SfxHint& rHint ) { DoDelayedSyntaxHighlight( rTextHint.GetValue() ); } + else if( rTextHint.GetId() == TEXT_HINT_VIEWSELECTIONCHANGED ) + { + if (SfxBindings* pBindings = GetBindingsPtr()) + { + pBindings->Invalidate( SID_CUT ); + pBindings->Invalidate( SID_COPY ); + } + } } } _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
