[Libreoffice-commits] core.git: Branch 'libreoffice-4-0' - basctl/source
Noel Power
noel.power at suse.com
Thu Mar 14 00:45:28 PDT 2013
basctl/source/basicide/baside2b.cxx | 8 ++++++++
1 file changed, 8 insertions(+)
New commits:
commit 00e80df8fa4e6ae9f473376aa83e282e0fb5dbb0
Author: Noel Power <noel.power at suse.com>
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 <fridrich at documentfoundation.org>
Tested-by: Fridrich Strba <fridrich at documentfoundation.org>
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 );
+ }
+ }
}
}
More information about the Libreoffice-commits
mailing list