summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-05-09 13:13:23 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-05-09 13:13:23 +0200
commite69c93d9c58f95f02a22c68c87966b10f34c55ac (patch)
tree013c895938301111c624a1d75638580b5206550f /sfx2
parentdf71f13b80c30cb98e310baf8f6aee11f8cbe81d (diff)
There is no css::uno::Sequence<bool>
Change-Id: Ibd630320d7cfb4c80c35e91e4407203b1783e980
Diffstat (limited to 'sfx2')
-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 92471b699cb4..1fe4ff8d256c 100644
--- a/sfx2/source/dialog/dinfdlg.cxx
+++ b/sfx2/source/dialog/dinfdlg.cxx
@@ -2297,7 +2297,7 @@ void CmisPropertiesWindow::AddLine( const OUString& sId, const OUString& sName,
}
else if ( sType == CMIS_TYPE_BOOL )
{
- Sequence< bool > seqValue;
+ Sequence<sal_Bool> seqValue;
rAny >>= seqValue;
sal_Int32 m_nNumValue = seqValue.getLength( );
for ( sal_Int32 i = 0; i < m_nNumValue; ++i )
@@ -2407,7 +2407,7 @@ Sequence< document::CmisProperty > CmisPropertiesWindow::GetCmisProperties() con
}
else if ( CMIS_TYPE_BOOL == sType )
{
- Sequence< bool > seqValue( pLine->m_aYesNos.size( ) );
+ Sequence<sal_Bool> seqValue( pLine->m_aYesNos.size( ) );
sal_Int32 k = 0;
for ( std::vector< CmisYesNo*>::const_iterator it = pLine->m_aYesNos.begin();
it != pLine->m_aYesNos.end(); ++it, ++k)