diff options
author | Frank Schoenheit [fs] <frank.schoenheit@oracle.com> | 2010-12-03 14:46:39 +0100 |
---|---|---|
committer | Frank Schoenheit [fs] <frank.schoenheit@oracle.com> | 2010-12-03 14:46:39 +0100 |
commit | be8d00fe05ad77bdf4aa86e37faab84b35fb8da8 (patch) | |
tree | 71b22e3b75b7ddd82ea1cb40c7e41bf402f1e604 | |
parent | b4a5fc894e64aeb5c7cd0ddd5efd4c78b55cc883 (diff) |
dba34c: #i104347# DisableSelectionOnFocus for multi line edit controls
-rw-r--r-- | svtools/source/uno/unoiface.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/svtools/source/uno/unoiface.cxx b/svtools/source/uno/unoiface.cxx index 18ab6f804d0c..51914a3f48d6 100644 --- a/svtools/source/uno/unoiface.cxx +++ b/svtools/source/uno/unoiface.cxx @@ -82,6 +82,7 @@ SAL_DLLPUBLIC_EXPORT Window* CreateWindow( VCLXWindow** ppNewComp, const ::com:: if ( pParent ) { pWindow = new MultiLineEdit( pParent, nWinBits|WB_IGNORETAB); + static_cast< MultiLineEdit* >( pWindow )->DisableSelectionOnFocus(); *ppNewComp = new VCLXMultiLineEdit; } else |