[Libreoffice-commits] core.git: sfx2/source

Caolán McNamara caolanm at redhat.com
Tue Nov 18 08:55:16 PST 2014


 sfx2/source/dialog/dinfdlg.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0cda507b30fdbbc19b0d4b27fccbebf7829b4404
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Tue Nov 18 16:53:42 2014 +0000

    Resolves: fdo#75066 add TABSTOP and DIALOGCONTROL bits
    
    to this custom widget to state that is is a candidate for tabstopping to, and
    that its a (old-school) container widget which has subwidgets which should be
    candidates too
    
    Change-Id: I39452f906b30c3962026ab9c4dba625ecd2d06a8

diff --git a/sfx2/source/dialog/dinfdlg.cxx b/sfx2/source/dialog/dinfdlg.cxx
index 850cb9c..bf2124e 100644
--- a/sfx2/source/dialog/dinfdlg.cxx
+++ b/sfx2/source/dialog/dinfdlg.cxx
@@ -1407,7 +1407,7 @@ CustomPropertiesWindow::CustomPropertiesWindow(vcl::Window* pParent,
     FixedText *pHeaderAccName,
     FixedText *pHeaderAccType,
     FixedText *pHeaderAccValue) :
-    Window(pParent),
+    Window(pParent, WB_HIDE | WB_CLIPCHILDREN | WB_TABSTOP | WB_DIALOGCONTROL),
     m_pHeaderAccName(pHeaderAccName),
     m_pHeaderAccType(pHeaderAccType),
     m_pHeaderAccValue(pHeaderAccValue),


More information about the Libreoffice-commits mailing list