Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
72a11e45
Kaydet (Commit)
72a11e45
authored
Nis 01, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Replace remaining getCppuType et al with cppu::UnoType
Change-Id: I338272459f7df611cc0033aaec02170e84ba2393
üst
adf907a7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
30 deletions
+30
-30
mathmlexport.cxx
starmath/source/mathmlexport.cxx
+3
-3
mathmlimport.cxx
starmath/source/mathmlimport.cxx
+1
-1
unomodel.cxx
starmath/source/unomodel.cxx
+26
-26
No files found.
starmath/source/mathmlexport.cxx
Dosyayı görüntüle @
72a11e45
...
@@ -146,7 +146,7 @@ bool SmXMLExportWrapper::Export(SfxMedium &rMedium)
...
@@ -146,7 +146,7 @@ bool SmXMLExportWrapper::Export(SfxMedium &rMedium)
comphelper
::
PropertyMapEntry
aInfoMap
[]
=
comphelper
::
PropertyMapEntry
aInfoMap
[]
=
{
{
{
OUString
(
"UsePrettyPrinting"
),
0
,
{
OUString
(
"UsePrettyPrinting"
),
0
,
::
getBooleanCppuType
(),
cppu
::
UnoType
<
bool
>::
get
(),
beans
::
PropertyAttribute
::
MAYBEVOID
,
0
},
beans
::
PropertyAttribute
::
MAYBEVOID
,
0
},
{
OUString
(
"BaseURI"
),
0
,
{
OUString
(
"BaseURI"
),
0
,
::
cppu
::
UnoType
<
OUString
>::
get
(),
::
cppu
::
UnoType
<
OUString
>::
get
(),
...
@@ -167,7 +167,7 @@ bool SmXMLExportWrapper::Export(SfxMedium &rMedium)
...
@@ -167,7 +167,7 @@ bool SmXMLExportWrapper::Export(SfxMedium &rMedium)
OUString
sUsePrettyPrinting
(
"UsePrettyPrinting"
);
OUString
sUsePrettyPrinting
(
"UsePrettyPrinting"
);
sal_Bool
bUsePrettyPrinting
(
bFlat
||
aSaveOpt
.
IsPrettyPrinting
()
);
sal_Bool
bUsePrettyPrinting
(
bFlat
||
aSaveOpt
.
IsPrettyPrinting
()
);
Any
aAny
;
Any
aAny
;
aAny
.
setValue
(
&
bUsePrettyPrinting
,
::
getBooleanCppuType
()
);
aAny
.
setValue
(
&
bUsePrettyPrinting
,
cppu
::
UnoType
<
bool
>::
get
()
);
xInfoSet
->
setPropertyValue
(
sUsePrettyPrinting
,
aAny
);
xInfoSet
->
setPropertyValue
(
sUsePrettyPrinting
,
aAny
);
// Set base URI
// Set base URI
...
@@ -344,7 +344,7 @@ bool SmXMLExportWrapper::WriteThroughComponent(
...
@@ -344,7 +344,7 @@ bool SmXMLExportWrapper::WriteThroughComponent(
// all streams must be encrypted in encrypted document
// all streams must be encrypted in encrypted document
OUString
aTmpPropName
(
"UseCommonStoragePasswordEncryption"
);
OUString
aTmpPropName
(
"UseCommonStoragePasswordEncryption"
);
sal_Bool
bTrue
=
sal_True
;
sal_Bool
bTrue
=
sal_True
;
aAny
.
setValue
(
&
bTrue
,
::
getBooleanCppuType
()
);
aAny
.
setValue
(
&
bTrue
,
cppu
::
UnoType
<
bool
>::
get
()
);
xSet
->
setPropertyValue
(
aTmpPropName
,
aAny
);
xSet
->
setPropertyValue
(
aTmpPropName
,
aAny
);
// set Base URL
// set Base URL
...
...
starmath/source/mathmlimport.cxx
Dosyayı görüntüle @
72a11e45
...
@@ -364,7 +364,7 @@ sal_uLong SmXMLImportWrapper::ReadThroughComponent(
...
@@ -364,7 +364,7 @@ sal_uLong SmXMLImportWrapper::ReadThroughComponent(
uno
::
Reference
<
beans
::
XPropertySet
>
xProps
(
xEventsStream
,
uno
::
UNO_QUERY
);
uno
::
Reference
<
beans
::
XPropertySet
>
xProps
(
xEventsStream
,
uno
::
UNO_QUERY
);
Any
aAny
=
xProps
->
getPropertyValue
(
"Encrypted"
);
Any
aAny
=
xProps
->
getPropertyValue
(
"Encrypted"
);
bool
bEncrypted
=
false
;
bool
bEncrypted
=
false
;
if
(
aAny
.
getValueType
()
==
::
getBooleanCppuType
()
)
if
(
aAny
.
getValueType
()
==
cppu
::
UnoType
<
bool
>::
get
()
)
aAny
>>=
bEncrypted
;
aAny
>>=
bEncrypted
;
// set Base URL
// set Base URL
...
...
starmath/source/unomodel.cxx
Dosyayı görüntüle @
72a11e45
...
@@ -242,31 +242,31 @@ static PropertySetInfo * lcl_createModelPropertyInfo ()
...
@@ -242,31 +242,31 @@ static PropertySetInfo * lcl_createModelPropertyInfo ()
{
OUString
(
"CustomFontNameSans"
)
,
HANDLE_CUSTOM_FONT_NAME_SANS
,
::
cppu
::
UnoType
<
OUString
>::
get
(),
PROPERTY_NONE
,
FNT_SANS
},
{
OUString
(
"CustomFontNameSans"
)
,
HANDLE_CUSTOM_FONT_NAME_SANS
,
::
cppu
::
UnoType
<
OUString
>::
get
(),
PROPERTY_NONE
,
FNT_SANS
},
{
OUString
(
"CustomFontNameSerif"
)
,
HANDLE_CUSTOM_FONT_NAME_SERIF
,
::
cppu
::
UnoType
<
OUString
>::
get
(),
PROPERTY_NONE
,
FNT_SERIF
},
{
OUString
(
"CustomFontNameSerif"
)
,
HANDLE_CUSTOM_FONT_NAME_SERIF
,
::
cppu
::
UnoType
<
OUString
>::
get
(),
PROPERTY_NONE
,
FNT_SERIF
},
{
OUString
(
"DialogLibraries"
)
,
HANDLE_DIALOG_LIBRARIES
,
cppu
::
UnoType
<
script
::
XLibraryContainer
>::
get
(),
PropertyAttribute
::
READONLY
,
0
},
{
OUString
(
"DialogLibraries"
)
,
HANDLE_DIALOG_LIBRARIES
,
cppu
::
UnoType
<
script
::
XLibraryContainer
>::
get
(),
PropertyAttribute
::
READONLY
,
0
},
{
OUString
(
"FontFixedIsBold"
)
,
HANDLE_CUSTOM_FONT_FIXED_WEIGHT
,
::
getBooleanCppuType
(),
PROPERTY_NONE
,
FNT_FIXED
},
{
OUString
(
"FontFixedIsBold"
)
,
HANDLE_CUSTOM_FONT_FIXED_WEIGHT
,
cppu
::
UnoType
<
bool
>::
get
(),
PROPERTY_NONE
,
FNT_FIXED
},
{
OUString
(
"FontFixedIsItalic"
)
,
HANDLE_CUSTOM_FONT_FIXED_POSTURE
,
::
getBooleanCppuType
(),
PROPERTY_NONE
,
FNT_FIXED
},
{
OUString
(
"FontFixedIsItalic"
)
,
HANDLE_CUSTOM_FONT_FIXED_POSTURE
,
cppu
::
UnoType
<
bool
>::
get
(),
PROPERTY_NONE
,
FNT_FIXED
},
{
OUString
(
"FontFunctionsIsBold"
)
,
HANDLE_FONT_FUNCTIONS_WEIGHT
,
::
getBooleanCppuType
(),
PROPERTY_NONE
,
FNT_FUNCTION
},
{
OUString
(
"FontFunctionsIsBold"
)
,
HANDLE_FONT_FUNCTIONS_WEIGHT
,
cppu
::
UnoType
<
bool
>::
get
(),
PROPERTY_NONE
,
FNT_FUNCTION
},
{
OUString
(
"FontFunctionsIsItalic"
)
,
HANDLE_FONT_FUNCTIONS_POSTURE
,
::
getBooleanCppuType
(),
PROPERTY_NONE
,
FNT_FUNCTION
},
{
OUString
(
"FontFunctionsIsItalic"
)
,
HANDLE_FONT_FUNCTIONS_POSTURE
,
cppu
::
UnoType
<
bool
>::
get
(),
PROPERTY_NONE
,
FNT_FUNCTION
},
{
OUString
(
"FontNameFunctions"
)
,
HANDLE_FONT_NAME_FUNCTIONS
,
::
cppu
::
UnoType
<
OUString
>::
get
(),
PROPERTY_NONE
,
FNT_FUNCTION
},
{
OUString
(
"FontNameFunctions"
)
,
HANDLE_FONT_NAME_FUNCTIONS
,
::
cppu
::
UnoType
<
OUString
>::
get
(),
PROPERTY_NONE
,
FNT_FUNCTION
},
{
OUString
(
"FontNameNumbers"
)
,
HANDLE_FONT_NAME_NUMBERS
,
::
cppu
::
UnoType
<
OUString
>::
get
(),
PROPERTY_NONE
,
FNT_NUMBER
},
{
OUString
(
"FontNameNumbers"
)
,
HANDLE_FONT_NAME_NUMBERS
,
::
cppu
::
UnoType
<
OUString
>::
get
(),
PROPERTY_NONE
,
FNT_NUMBER
},
{
OUString
(
"FontNameText"
)
,
HANDLE_FONT_NAME_TEXT
,
::
cppu
::
UnoType
<
OUString
>::
get
(),
PROPERTY_NONE
,
FNT_TEXT
},
{
OUString
(
"FontNameText"
)
,
HANDLE_FONT_NAME_TEXT
,
::
cppu
::
UnoType
<
OUString
>::
get
(),
PROPERTY_NONE
,
FNT_TEXT
},
{
OUString
(
"FontNameVariables"
)
,
HANDLE_FONT_NAME_VARIABLES
,
::
cppu
::
UnoType
<
OUString
>::
get
(),
PROPERTY_NONE
,
FNT_VARIABLE
},
{
OUString
(
"FontNameVariables"
)
,
HANDLE_FONT_NAME_VARIABLES
,
::
cppu
::
UnoType
<
OUString
>::
get
(),
PROPERTY_NONE
,
FNT_VARIABLE
},
{
OUString
(
"FontNumbersIsBold"
)
,
HANDLE_FONT_NUMBERS_WEIGHT
,
::
getBooleanCppuType
(),
PROPERTY_NONE
,
FNT_NUMBER
},
{
OUString
(
"FontNumbersIsBold"
)
,
HANDLE_FONT_NUMBERS_WEIGHT
,
cppu
::
UnoType
<
bool
>::
get
(),
PROPERTY_NONE
,
FNT_NUMBER
},
{
OUString
(
"FontNumbersIsItalic"
)
,
HANDLE_FONT_NUMBERS_POSTURE
,
::
getBooleanCppuType
(),
PROPERTY_NONE
,
FNT_NUMBER
},
{
OUString
(
"FontNumbersIsItalic"
)
,
HANDLE_FONT_NUMBERS_POSTURE
,
cppu
::
UnoType
<
bool
>::
get
(),
PROPERTY_NONE
,
FNT_NUMBER
},
{
OUString
(
"FontSansIsBold"
)
,
HANDLE_CUSTOM_FONT_SANS_WEIGHT
,
::
getBooleanCppuType
(),
PROPERTY_NONE
,
FNT_SANS
},
{
OUString
(
"FontSansIsBold"
)
,
HANDLE_CUSTOM_FONT_SANS_WEIGHT
,
cppu
::
UnoType
<
bool
>::
get
(),
PROPERTY_NONE
,
FNT_SANS
},
{
OUString
(
"FontSansIsItalic"
)
,
HANDLE_CUSTOM_FONT_SANS_POSTURE
,
::
getBooleanCppuType
(),
PROPERTY_NONE
,
FNT_SANS
},
{
OUString
(
"FontSansIsItalic"
)
,
HANDLE_CUSTOM_FONT_SANS_POSTURE
,
cppu
::
UnoType
<
bool
>::
get
(),
PROPERTY_NONE
,
FNT_SANS
},
{
OUString
(
"FontSerifIsBold"
)
,
HANDLE_CUSTOM_FONT_SERIF_WEIGHT
,
::
getBooleanCppuType
(),
PROPERTY_NONE
,
FNT_SERIF
},
{
OUString
(
"FontSerifIsBold"
)
,
HANDLE_CUSTOM_FONT_SERIF_WEIGHT
,
cppu
::
UnoType
<
bool
>::
get
(),
PROPERTY_NONE
,
FNT_SERIF
},
{
OUString
(
"FontSerifIsItalic"
)
,
HANDLE_CUSTOM_FONT_SERIF_POSTURE
,
::
getBooleanCppuType
(),
PROPERTY_NONE
,
FNT_SERIF
},
{
OUString
(
"FontSerifIsItalic"
)
,
HANDLE_CUSTOM_FONT_SERIF_POSTURE
,
cppu
::
UnoType
<
bool
>::
get
(),
PROPERTY_NONE
,
FNT_SERIF
},
{
OUString
(
"FontTextIsBold"
)
,
HANDLE_FONT_TEXT_WEIGHT
,
::
getBooleanCppuType
(),
PROPERTY_NONE
,
FNT_TEXT
},
{
OUString
(
"FontTextIsBold"
)
,
HANDLE_FONT_TEXT_WEIGHT
,
cppu
::
UnoType
<
bool
>::
get
(),
PROPERTY_NONE
,
FNT_TEXT
},
{
OUString
(
"FontTextIsItalic"
)
,
HANDLE_FONT_TEXT_POSTURE
,
::
getBooleanCppuType
(),
PROPERTY_NONE
,
FNT_TEXT
},
{
OUString
(
"FontTextIsItalic"
)
,
HANDLE_FONT_TEXT_POSTURE
,
cppu
::
UnoType
<
bool
>::
get
(),
PROPERTY_NONE
,
FNT_TEXT
},
{
OUString
(
"FontVariablesIsBold"
)
,
HANDLE_FONT_VARIABLES_WEIGHT
,
::
getBooleanCppuType
(),
PROPERTY_NONE
,
FNT_VARIABLE
},
{
OUString
(
"FontVariablesIsBold"
)
,
HANDLE_FONT_VARIABLES_WEIGHT
,
cppu
::
UnoType
<
bool
>::
get
(),
PROPERTY_NONE
,
FNT_VARIABLE
},
{
OUString
(
"FontVariablesIsItalic"
)
,
HANDLE_FONT_VARIABLES_POSTURE
,
::
getBooleanCppuType
(),
PROPERTY_NONE
,
FNT_VARIABLE
},
{
OUString
(
"FontVariablesIsItalic"
)
,
HANDLE_FONT_VARIABLES_POSTURE
,
cppu
::
UnoType
<
bool
>::
get
(),
PROPERTY_NONE
,
FNT_VARIABLE
},
{
OUString
(
"Formula"
)
,
HANDLE_FORMULA
,
::
cppu
::
UnoType
<
OUString
>::
get
(),
PROPERTY_NONE
,
0
},
{
OUString
(
"Formula"
)
,
HANDLE_FORMULA
,
::
cppu
::
UnoType
<
OUString
>::
get
(),
PROPERTY_NONE
,
0
},
{
OUString
(
"IsScaleAllBrackets"
)
,
HANDLE_IS_SCALE_ALL_BRACKETS
,
::
getBooleanCppuType
(),
PROPERTY_NONE
,
0
},
{
OUString
(
"IsScaleAllBrackets"
)
,
HANDLE_IS_SCALE_ALL_BRACKETS
,
cppu
::
UnoType
<
bool
>::
get
(),
PROPERTY_NONE
,
0
},
{
OUString
(
"IsTextMode"
)
,
HANDLE_IS_TEXT_MODE
,
::
getBooleanCppuType
(),
PROPERTY_NONE
,
0
},
{
OUString
(
"IsTextMode"
)
,
HANDLE_IS_TEXT_MODE
,
cppu
::
UnoType
<
bool
>::
get
(),
PROPERTY_NONE
,
0
},
{
OUString
(
"GreekCharStyle"
)
,
HANDLE_GREEK_CHAR_STYLE
,
::
cppu
::
UnoType
<
sal_Int16
>::
get
(),
PROPERTY_NONE
,
0
},
{
OUString
(
"GreekCharStyle"
)
,
HANDLE_GREEK_CHAR_STYLE
,
::
cppu
::
UnoType
<
sal_Int16
>::
get
(),
PROPERTY_NONE
,
0
},
{
OUString
(
"LeftMargin"
)
,
HANDLE_LEFT_MARGIN
,
::
cppu
::
UnoType
<
sal_Int16
>::
get
(),
PROPERTY_NONE
,
DIS_LEFTSPACE
},
{
OUString
(
"LeftMargin"
)
,
HANDLE_LEFT_MARGIN
,
::
cppu
::
UnoType
<
sal_Int16
>::
get
(),
PROPERTY_NONE
,
DIS_LEFTSPACE
},
{
OUString
(
"PrinterName"
)
,
HANDLE_PRINTER_NAME
,
::
cppu
::
UnoType
<
OUString
>::
get
(),
PROPERTY_NONE
,
0
},
{
OUString
(
"PrinterName"
)
,
HANDLE_PRINTER_NAME
,
::
cppu
::
UnoType
<
OUString
>::
get
(),
PROPERTY_NONE
,
0
},
{
OUString
(
"PrinterSetup"
)
,
HANDLE_PRINTER_SETUP
,
::
getCppuType
((
const
Sequence
<
sal_Int8
>*
)
0
),
PROPERTY_NONE
,
0
},
{
OUString
(
"PrinterSetup"
)
,
HANDLE_PRINTER_SETUP
,
cppu
::
UnoType
<
const
Sequence
<
sal_Int8
>>::
get
(
),
PROPERTY_NONE
,
0
},
{
OUString
(
"RelativeBracketDistance"
)
,
HANDLE_RELATIVE_BRACKET_DISTANCE
,
::
cppu
::
UnoType
<
sal_Int16
>::
get
(),
PROPERTY_NONE
,
DIS_BRACKETSPACE
},
{
OUString
(
"RelativeBracketDistance"
)
,
HANDLE_RELATIVE_BRACKET_DISTANCE
,
::
cppu
::
UnoType
<
sal_Int16
>::
get
(),
PROPERTY_NONE
,
DIS_BRACKETSPACE
},
{
OUString
(
"RelativeBracketExcessSize"
)
,
HANDLE_RELATIVE_BRACKET_EXCESS_SIZE
,
::
cppu
::
UnoType
<
sal_Int16
>::
get
(),
PROPERTY_NONE
,
DIS_BRACKETSIZE
},
{
OUString
(
"RelativeBracketExcessSize"
)
,
HANDLE_RELATIVE_BRACKET_EXCESS_SIZE
,
::
cppu
::
UnoType
<
sal_Int16
>::
get
(),
PROPERTY_NONE
,
DIS_BRACKETSIZE
},
{
OUString
(
"RelativeFontHeightFunctions"
)
,
HANDLE_RELATIVE_FONT_HEIGHT_FUNCTIONS
,
::
cppu
::
UnoType
<
sal_Int16
>::
get
(),
PROPERTY_NONE
,
SIZ_FUNCTION
},
{
OUString
(
"RelativeFontHeightFunctions"
)
,
HANDLE_RELATIVE_FONT_HEIGHT_FUNCTIONS
,
::
cppu
::
UnoType
<
sal_Int16
>::
get
(),
PROPERTY_NONE
,
SIZ_FUNCTION
},
...
@@ -294,14 +294,14 @@ static PropertySetInfo * lcl_createModelPropertyInfo ()
...
@@ -294,14 +294,14 @@ static PropertySetInfo * lcl_createModelPropertyInfo ()
{
OUString
(
"RelativeUpperLimitDistance"
)
,
HANDLE_RELATIVE_UPPER_LIMIT_DISTANCE
,
::
cppu
::
UnoType
<
sal_Int16
>::
get
(),
PROPERTY_NONE
,
DIS_UPPERLIMIT
},
{
OUString
(
"RelativeUpperLimitDistance"
)
,
HANDLE_RELATIVE_UPPER_LIMIT_DISTANCE
,
::
cppu
::
UnoType
<
sal_Int16
>::
get
(),
PROPERTY_NONE
,
DIS_UPPERLIMIT
},
{
OUString
(
"RightMargin"
)
,
HANDLE_RIGHT_MARGIN
,
::
cppu
::
UnoType
<
sal_Int16
>::
get
(),
PROPERTY_NONE
,
DIS_RIGHTSPACE
},
{
OUString
(
"RightMargin"
)
,
HANDLE_RIGHT_MARGIN
,
::
cppu
::
UnoType
<
sal_Int16
>::
get
(),
PROPERTY_NONE
,
DIS_RIGHTSPACE
},
{
OUString
(
"RuntimeUID"
)
,
HANDLE_RUNTIME_UID
,
cppu
::
UnoType
<
OUString
>::
get
(),
PropertyAttribute
::
READONLY
,
0
},
{
OUString
(
"RuntimeUID"
)
,
HANDLE_RUNTIME_UID
,
cppu
::
UnoType
<
OUString
>::
get
(),
PropertyAttribute
::
READONLY
,
0
},
{
OUString
(
"Symbols"
)
,
HANDLE_SYMBOLS
,
::
getCppuType
((
const
Sequence
<
SymbolDescriptor
>
*
)
0
),
PROPERTY_NONE
,
0
},
{
OUString
(
"Symbols"
)
,
HANDLE_SYMBOLS
,
cppu
::
UnoType
<
Sequence
<
SymbolDescriptor
>>::
get
(
),
PROPERTY_NONE
,
0
},
{
OUString
(
"UserDefinedSymbolsInUse"
)
,
HANDLE_USED_SYMBOLS
,
::
getCppuType
((
const
Sequence
<
SymbolDescriptor
>
*
)
0
),
PropertyAttribute
::
READONLY
,
0
},
{
OUString
(
"UserDefinedSymbolsInUse"
)
,
HANDLE_USED_SYMBOLS
,
cppu
::
UnoType
<
Sequence
<
SymbolDescriptor
>>::
get
(
),
PropertyAttribute
::
READONLY
,
0
},
{
OUString
(
"TopMargin"
)
,
HANDLE_TOP_MARGIN
,
::
cppu
::
UnoType
<
sal_Int16
>::
get
(),
PROPERTY_NONE
,
DIS_TOPSPACE
},
{
OUString
(
"TopMargin"
)
,
HANDLE_TOP_MARGIN
,
::
cppu
::
UnoType
<
sal_Int16
>::
get
(),
PROPERTY_NONE
,
DIS_TOPSPACE
},
// #i33095# Security Options
// #i33095# Security Options
{
OUString
(
"LoadReadonly"
)
,
HANDLE_LOAD_READONLY
,
::
getBooleanCppuType
(),
PROPERTY_NONE
,
0
},
{
OUString
(
"LoadReadonly"
)
,
HANDLE_LOAD_READONLY
,
cppu
::
UnoType
<
bool
>::
get
(),
PROPERTY_NONE
,
0
},
// #i972#
// #i972#
{
OUString
(
"BaseLine"
)
,
HANDLE_BASELINE
,
::
cppu
::
UnoType
<
sal_Int16
>::
get
(),
PROPERTY_NONE
,
0
},
{
OUString
(
"BaseLine"
)
,
HANDLE_BASELINE
,
::
cppu
::
UnoType
<
sal_Int16
>::
get
(),
PROPERTY_NONE
,
0
},
{
OUString
(
"InteropGrabBag"
)
,
HANDLE_INTEROP_GRAB_BAG
,
::
getCppuType
((
uno
::
Sequence
<
beans
::
PropertyValue
>*
)
0
),
PROPERTY_NONE
,
0
},
{
OUString
(
"InteropGrabBag"
)
,
HANDLE_INTEROP_GRAB_BAG
,
cppu
::
UnoType
<
uno
::
Sequence
<
beans
::
PropertyValue
>>::
get
(
),
PROPERTY_NONE
,
0
},
{
OUString
(),
0
,
css
::
uno
::
Type
(),
0
,
0
}
{
OUString
(),
0
,
css
::
uno
::
Type
(),
0
,
0
}
};
};
PropertySetInfo
*
pInfo
=
new
PropertySetInfo
(
aModelPropertyInfoMap
);
PropertySetInfo
*
pInfo
=
new
PropertySetInfo
(
aModelPropertyInfoMap
);
...
@@ -476,7 +476,7 @@ void SmModel::_setPropertyValues(const PropertyMapEntry** ppEntries, const Any*
...
@@ -476,7 +476,7 @@ void SmModel::_setPropertyValues(const PropertyMapEntry** ppEntries, const Any*
case
HANDLE_FONT_NUMBERS_POSTURE
:
case
HANDLE_FONT_NUMBERS_POSTURE
:
case
HANDLE_FONT_TEXT_POSTURE
:
case
HANDLE_FONT_TEXT_POSTURE
:
{
{
if
((
*
pValues
).
getValueType
()
!=
::
getBooleanCppuType
())
if
((
*
pValues
).
getValueType
()
!=
cppu
::
UnoType
<
bool
>::
get
())
throw
IllegalArgumentException
();
throw
IllegalArgumentException
();
bool
bVal
=
*
static_cast
<
sal_Bool
const
*>
((
*
pValues
).
getValue
());
bool
bVal
=
*
static_cast
<
sal_Bool
const
*>
((
*
pValues
).
getValue
());
vcl
::
Font
aNewFont
(
aFormat
.
GetFont
((
*
ppEntries
)
->
mnMemberId
));
vcl
::
Font
aNewFont
(
aFormat
.
GetFont
((
*
ppEntries
)
->
mnMemberId
));
...
@@ -492,7 +492,7 @@ void SmModel::_setPropertyValues(const PropertyMapEntry** ppEntries, const Any*
...
@@ -492,7 +492,7 @@ void SmModel::_setPropertyValues(const PropertyMapEntry** ppEntries, const Any*
case
HANDLE_FONT_NUMBERS_WEIGHT
:
case
HANDLE_FONT_NUMBERS_WEIGHT
:
case
HANDLE_FONT_TEXT_WEIGHT
:
case
HANDLE_FONT_TEXT_WEIGHT
:
{
{
if
((
*
pValues
).
getValueType
()
!=
::
getBooleanCppuType
())
if
((
*
pValues
).
getValueType
()
!=
cppu
::
UnoType
<
bool
>::
get
())
throw
IllegalArgumentException
();
throw
IllegalArgumentException
();
bool
bVal
=
*
static_cast
<
sal_Bool
const
*>
((
*
pValues
).
getValue
());
bool
bVal
=
*
static_cast
<
sal_Bool
const
*>
((
*
pValues
).
getValue
());
vcl
::
Font
aNewFont
(
aFormat
.
GetFont
((
*
ppEntries
)
->
mnMemberId
));
vcl
::
Font
aNewFont
(
aFormat
.
GetFont
((
*
ppEntries
)
->
mnMemberId
));
...
@@ -683,7 +683,7 @@ void SmModel::_setPropertyValues(const PropertyMapEntry** ppEntries, const Any*
...
@@ -683,7 +683,7 @@ void SmModel::_setPropertyValues(const PropertyMapEntry** ppEntries, const Any*
// #i33095# Security Options
// #i33095# Security Options
case
HANDLE_LOAD_READONLY
:
case
HANDLE_LOAD_READONLY
:
{
{
if
(
(
*
pValues
).
getValueType
()
!=
::
getBooleanCppuType
()
)
if
(
(
*
pValues
).
getValueType
()
!=
cppu
::
UnoType
<
bool
>::
get
()
)
throw
IllegalArgumentException
();
throw
IllegalArgumentException
();
bool
bReadonly
=
false
;
bool
bReadonly
=
false
;
if
(
*
pValues
>>=
bReadonly
)
if
(
*
pValues
>>=
bReadonly
)
...
@@ -778,7 +778,7 @@ void SmModel::_getPropertyValues( const PropertyMapEntry **ppEntries, Any *pValu
...
@@ -778,7 +778,7 @@ void SmModel::_getPropertyValues( const PropertyMapEntry **ppEntries, Any *pValu
case
HANDLE_IS_TEXT_MODE
:
case
HANDLE_IS_TEXT_MODE
:
{
{
sal_Bool
bVal
=
aFormat
.
IsTextmode
();
sal_Bool
bVal
=
aFormat
.
IsTextmode
();
(
*
pValue
).
setValue
(
&
bVal
,
::
getBooleanCppuType
());
(
*
pValue
).
setValue
(
&
bVal
,
cppu
::
UnoType
<
bool
>::
get
());
}
}
break
;
break
;
...
@@ -820,7 +820,7 @@ void SmModel::_getPropertyValues( const PropertyMapEntry **ppEntries, Any *pValu
...
@@ -820,7 +820,7 @@ void SmModel::_getPropertyValues( const PropertyMapEntry **ppEntries, Any *pValu
case
HANDLE_IS_SCALE_ALL_BRACKETS
:
case
HANDLE_IS_SCALE_ALL_BRACKETS
:
{
{
sal_Bool
bVal
=
aFormat
.
IsScaleNormalBrackets
();
sal_Bool
bVal
=
aFormat
.
IsScaleNormalBrackets
();
(
*
pValue
).
setValue
(
&
bVal
,
::
getBooleanCppuType
());
(
*
pValue
).
setValue
(
&
bVal
,
cppu
::
UnoType
<
bool
>::
get
());
}
}
break
;
break
;
case
HANDLE_PRINTER_NAME
:
case
HANDLE_PRINTER_NAME
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment