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
28d63935
Kaydet (Commit)
28d63935
authored
Kas 06, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:stringconstant: elide explicit ctor usage (automatic rewrite)
Change-Id: I8aedb690380d407dcbc290a44d21afa6604b8f95
üst
41a000b7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
17 deletions
+17
-17
xmldlg_export.cxx
xmlscript/source/xmldlg_imexp/xmldlg_export.cxx
+3
-3
xmldlg_impmodels.cxx
xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx
+1
-1
xmldlg_import.cxx
xmlscript/source/xmldlg_imexp/xmldlg_import.cxx
+12
-12
xmllib_export.cxx
xmlscript/source/xmllib_imexp/xmllib_export.cxx
+1
-1
No files found.
xmlscript/source/xmldlg_imexp/xmldlg_export.cxx
Dosyayı görüntüle @
28d63935
...
...
@@ -1026,13 +1026,13 @@ void ElementDescriptor::readImageScaleModeAttr( OUString const & rPropName, OUSt
switch
(
nImageScaleMode
)
{
case
:
:
awt
::
ImageScaleMode
::
NONE
:
addAttribute
(
rAttrName
,
OUString
(
"none"
)
);
addAttribute
(
rAttrName
,
"none"
);
break
;
case
:
:
awt
::
ImageScaleMode
::
ISOTROPIC
:
addAttribute
(
rAttrName
,
OUString
(
"isotropic"
)
);
addAttribute
(
rAttrName
,
"isotropic"
);
break
;
case
:
:
awt
::
ImageScaleMode
::
ANISOTROPIC
:
addAttribute
(
rAttrName
,
OUString
(
"anisotropic"
)
);
addAttribute
(
rAttrName
,
"anisotropic"
);
break
;
default
:
OSL_ENSURE
(
false
,
"### illegal image scale mode value."
);
...
...
xmlscript/source/xmldlg_imexp/xmldlg_impmodels.cxx
Dosyayı görüntüle @
28d63935
...
...
@@ -208,7 +208,7 @@ void Page::endElement()
}
ctx
.
importDefaults
(
0
,
0
,
_xAttributes
);
// inherited from BulletinBoardElement
ctx
.
importStringProperty
(
OUString
(
"Title"
),
OUString
(
"title"
)
,
_xAttributes
);
ctx
.
importStringProperty
(
"Title"
,
"title"
,
_xAttributes
);
ctx
.
importEvents
(
_events
);
// avoid ring-reference:
// vector< event elements > holding event elements holding this (via _pParent)
...
...
xmlscript/source/xmldlg_imexp/xmldlg_import.cxx
Dosyayı görüntüle @
28d63935
...
...
@@ -1564,23 +1564,23 @@ void ImportContext::importEvents(
void
ImportContext
::
importScollableSettings
(
Reference
<
xml
::
input
::
XAttributes
>
const
&
_xAttributes
)
{
importLongProperty
(
OUString
(
"ScrollHeight"
)
,
OUString
(
"scrollheight"
)
,
importLongProperty
(
"ScrollHeight"
,
"scrollheight"
,
_xAttributes
);
importLongProperty
(
OUString
(
"ScrollWidth"
)
,
OUString
(
"scrollwidth"
)
,
importLongProperty
(
"ScrollWidth"
,
"scrollwidth"
,
_xAttributes
);
importLongProperty
(
OUString
(
"ScrollTop"
)
,
OUString
(
"scrolltop"
)
,
importLongProperty
(
"ScrollTop"
,
"scrolltop"
,
_xAttributes
);
importLongProperty
(
OUString
(
"ScrollLeft"
)
,
OUString
(
"scrollleft"
)
,
importLongProperty
(
"ScrollLeft"
,
"scrollleft"
,
_xAttributes
);
importBooleanProperty
(
OUString
(
"HScroll"
)
,
OUString
(
"hscroll"
)
,
importBooleanProperty
(
"HScroll"
,
"hscroll"
,
_xAttributes
);
importBooleanProperty
(
OUString
(
"VScroll"
)
,
OUString
(
"vscroll"
)
,
importBooleanProperty
(
"VScroll"
,
"vscroll"
,
_xAttributes
);
}
...
...
xmlscript/source/xmllib_imexp/xmllib_export.cxx
Dosyayı görüntüle @
28d63935
...
...
@@ -130,7 +130,7 @@ SAL_CALL exportLibrary(
Reference
<
xml
::
sax
::
XAttributeList
>
xElementAttribs
;
xElementAttribs
=
static_cast
<
xml
::
sax
::
XAttributeList
*
>
(
pElement
);
pElement
->
addAttribute
(
OUString
(
XMLNS_LIBRARY_PREFIX
":name"
)
,
pElement
->
addAttribute
(
XMLNS_LIBRARY_PREFIX
":name"
,
pElementNames
[
i
]
);
pLibElement
->
addSubElement
(
pElement
);
...
...
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