diff options
author | Ivan Timofeev <timofeev.i.s@gmail.com> | 2012-10-22 17:25:12 +0400 |
---|---|---|
committer | Ivan Timofeev <timofeev.i.s@gmail.com> | 2012-10-22 17:25:12 +0400 |
commit | 9dbb62555f0813cc55e48be28047f22e2b3ea4ef (patch) | |
tree | f77bed0522a850a588e6ef8ca5e3d462b409d397 /cui | |
parent | f1386b7706686e0c65ba0ad6d92574658cdca3a9 (diff) |
disable cursor in about dialog and message boxes
Change-Id: I060872e0a468f2ce26a2ab519c5bfe271574170b
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/dialogs/about.cxx | 1 | ||||
-rw-r--r-- | cui/source/dialogs/insdlg.cxx | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx index 23b9bd5b6542..9dc8384cbe0f 100644 --- a/cui/source/dialogs/about.cxx +++ b/cui/source/dialogs/about.cxx @@ -166,6 +166,7 @@ void AboutDialog::StyleControls() // Version Text aLargeFont.SetSize( Size( 0, aLabelFont.GetSize().Height() * 1.2 ) ); aVersionText.SetControlFont( aLargeFont ); + aVersionText.EnableCursor( sal_False ); // Copyright Text aCopyrightText.SetTextSelectable( sal_False ); diff --git a/cui/source/dialogs/insdlg.cxx b/cui/source/dialogs/insdlg.cxx index 069d26c0e8c9..9c42a48e3eca 100644 --- a/cui/source/dialogs/insdlg.cxx +++ b/cui/source/dialogs/insdlg.cxx @@ -46,7 +46,6 @@ #include <vcl/lstbox.hxx> #include <vcl/msgbox.hxx> #include <vcl/svapp.hxx> -#include <vcl/vclmedit.hxx> #include <sot/clsids.hxx> #include <sfx2/frmdescr.hxx> #include <sfx2/viewsh.hxx> |