summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Dargaud <libo@bobiciel.com>2011-04-12 18:09:28 +0200
committerThorsten Behrens <tbehrens@novell.com>2011-04-13 10:20:50 +0200
commit3b5a89c8a73c4db6f725fb14469f403d499912ee (patch)
tree59119eb7394d1038654d78239e7b56b3533ddf25
parent7adf3427ca7cc06bbe3cbb852f0782b4673766d1 (diff)
fix bug #36069 - Date properties in 'Custom Properties' do not scroll in UI
-rw-r--r--sfx2/source/dialog/dinfdlg.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/dialog/dinfdlg.cxx b/sfx2/source/dialog/dinfdlg.cxx
index b0e1cab2b4..7770deda3f 100644
--- a/sfx2/source/dialog/dinfdlg.cxx
+++ b/sfx2/source/dialog/dinfdlg.cxx
@@ -2230,8 +2230,8 @@ void CustomPropertiesWindow::DoScroll( sal_Int32 nNewPos )
if ( pLine->m_bIsRemoved )
continue;
- Window* pWindows[] = { &pLine->m_aNameBox, &pLine->m_aTypeBox, &pLine->m_aValueEdit, &pLine->m_aDurationField,
- &pLine->m_aYesNoButton, &pLine->m_aRemoveButton, NULL };
+ Window* pWindows[] = { &pLine->m_aNameBox, &pLine->m_aTypeBox, &pLine->m_aValueEdit, &pLine->m_aDateField, &pLine->m_aTimeField,
+ &pLine->m_aDurationField, &pLine->m_aEditButton, &pLine->m_aYesNoButton, &pLine->m_aRemoveButton, NULL };
Window** pCurrent = pWindows;
while ( *pCurrent )
{