[Libreoffice-commits] core.git: basctl/source
Noel Power
noel.power at suse.com
Wed Mar 13 10:25:24 PDT 2013
basctl/source/basicide/baside2b.cxx | 8 ++++++++
1 file changed, 8 insertions(+)
New commits:
commit 56f30adffa34e2f645646048747e3110a275b072
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
diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx
index e0fa872..8ab5dd9 100644
--- a/basctl/source/basicide/baside2b.cxx
+++ b/basctl/source/basicide/baside2b.cxx
@@ -746,6 +746,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