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
59d561b6
Kaydet (Commit)
59d561b6
authored
Kas 26, 2001
tarafından
Michael Brauer
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#94311#: Keep width and height in parameter list
üst
e1b78d36
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
12 deletions
+21
-12
XMLTextFrameContext.cxx
xmloff/source/text/XMLTextFrameContext.cxx
+21
-12
No files found.
xmloff/source/text/XMLTextFrameContext.cxx
Dosyayı görüntüle @
59d561b6
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: XMLTextFrameContext.cxx,v $
*
* $Revision: 1.5
1
$
* $Revision: 1.5
2
$
*
* last change: $Author: mib $ $Date: 2001-11-
12 14:23:47
$
* last change: $Author: mib $ $Date: 2001-11-
26 11:45:54
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -228,16 +228,20 @@ public:
ParamMap
&
rParamMap
);
virtual
~
XMLTextFrameParam_Impl
();
};
TYPEINIT1
(
XMLTextFrameParam_Impl
,
SvXMLImportContext
);
XMLTextFrameParam_Impl
::~
XMLTextFrameParam_Impl
()
{
}
XMLTextFrameParam_Impl
::
XMLTextFrameParam_Impl
(
SvXMLImport
&
rImport
,
sal_uInt16
nPrfx
,
const
::
rtl
::
OUString
&
rLName
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
XMLTextFrameParam_Impl
::
XMLTextFrameParam_Impl
(
SvXMLImport
&
rImport
,
sal_uInt16
nPrfx
,
const
::
rtl
::
OUString
&
rLName
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
xml
::
sax
::
XAttributeList
>
&
xAttrList
,
sal_uInt16
nType
,
ParamMap
&
rParamMap
)
:
sal_uInt16
nType
,
ParamMap
&
rParamMap
)
:
SvXMLImportContext
(
rImport
,
nPrfx
,
rLName
)
{
OUString
sName
,
sValue
;
...
...
@@ -250,13 +254,18 @@ XMLTextFrameParam_Impl::XMLTextFrameParam_Impl( SvXMLImport& rImport, sal_uInt16
OUString
aLocalName
;
sal_uInt16
nPrefix
=
GetImport
().
GetNamespaceMap
().
GetKeyByAttrName
(
rAttrName
,
&
aLocalName
);
if
(
XML_NAMESPACE_DRAW
==
nPrefix
&&
IsXMLToken
(
aLocalName
,
XML_VALUE
)
)
if
(
XML_NAMESPACE_DRAW
==
nPrefix
)
{
sValue
=
rValue
;
bFoundValue
=
sal_True
;
if
(
IsXMLToken
(
aLocalName
,
XML_VALUE
)
)
{
sValue
=
rValue
;
bFoundValue
=
sal_True
;
}
else
if
(
IsXMLToken
(
aLocalName
,
XML_NAME
)
)
{
sName
=
rValue
;
}
}
else
if
(
XML_NAMESPACE_OFFICE
==
nPrefix
&&
IsXMLToken
(
aLocalName
,
XML_NAME
)
)
sName
=
rValue
;
}
if
(
sName
.
getLength
()
&&
bFoundValue
)
rParamMap
[
sName
]
=
sValue
;
...
...
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