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
c76b97d3
Kaydet (Commit)
c76b97d3
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: I987fa3f29cb578e44e4022b6c33ae21a0094bfd8
üst
6cc82cdd
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
14 additions
and
14 deletions
+14
-14
svgcirclenode.cxx
svgio/source/svgreader/svgcirclenode.cxx
+1
-1
svgellipsenode.cxx
svgio/source/svgreader/svgellipsenode.cxx
+1
-1
svggnode.cxx
svgio/source/svgreader/svggnode.cxx
+1
-1
svgimagenode.cxx
svgio/source/svgreader/svgimagenode.cxx
+1
-1
svglinenode.cxx
svgio/source/svgreader/svglinenode.cxx
+1
-1
svgmarkernode.cxx
svgio/source/svgreader/svgmarkernode.cxx
+1
-1
svgpathnode.cxx
svgio/source/svgreader/svgpathnode.cxx
+1
-1
svgpatternnode.cxx
svgio/source/svgreader/svgpatternnode.cxx
+1
-1
svgrectnode.cxx
svgio/source/svgreader/svgrectnode.cxx
+1
-1
svgsvgnode.cxx
svgio/source/svgreader/svgsvgnode.cxx
+1
-1
svgtextnode.cxx
svgio/source/svgreader/svgtextnode.cxx
+1
-1
svgtools.cxx
svgio/source/svgreader/svgtools.cxx
+1
-1
svgtspannode.cxx
svgio/source/svgreader/svgtspannode.cxx
+1
-1
svgusenode.cxx
svgio/source/svgreader/svgusenode.cxx
+1
-1
No files found.
svgio/source/svgreader/svgcirclenode.cxx
Dosyayı görüntüle @
c76b97d3
...
...
@@ -44,7 +44,7 @@ namespace svgio
const
SvgStyleAttributes
*
SvgCircleNode
::
getSvgStyleAttributes
()
const
{
return
checkForCssStyle
(
OUString
(
"circle"
)
,
maSvgStyleAttributes
);
return
checkForCssStyle
(
"circle"
,
maSvgStyleAttributes
);
}
void
SvgCircleNode
::
parseAttribute
(
const
OUString
&
rTokenName
,
SVGToken
aSVGToken
,
const
OUString
&
aContent
)
...
...
svgio/source/svgreader/svgellipsenode.cxx
Dosyayı görüntüle @
c76b97d3
...
...
@@ -45,7 +45,7 @@ namespace svgio
const
SvgStyleAttributes
*
SvgEllipseNode
::
getSvgStyleAttributes
()
const
{
return
checkForCssStyle
(
OUString
(
"ellipse"
)
,
maSvgStyleAttributes
);
return
checkForCssStyle
(
"ellipse"
,
maSvgStyleAttributes
);
}
void
SvgEllipseNode
::
parseAttribute
(
const
OUString
&
rTokenName
,
SVGToken
aSVGToken
,
const
OUString
&
aContent
)
...
...
svgio/source/svgreader/svggnode.cxx
Dosyayı görüntüle @
c76b97d3
...
...
@@ -51,7 +51,7 @@ namespace svgio
else
{
// #i125258# for SVGTokenG take CssStyles into account
return
checkForCssStyle
(
OUString
(
"g"
)
,
maSvgStyleAttributes
);
return
checkForCssStyle
(
"g"
,
maSvgStyleAttributes
);
}
}
...
...
svgio/source/svgreader/svgimagenode.cxx
Dosyayı görüntüle @
c76b97d3
...
...
@@ -62,7 +62,7 @@ namespace svgio
const
SvgStyleAttributes
*
SvgImageNode
::
getSvgStyleAttributes
()
const
{
return
checkForCssStyle
(
OUString
(
"image"
)
,
maSvgStyleAttributes
);
return
checkForCssStyle
(
"image"
,
maSvgStyleAttributes
);
}
void
SvgImageNode
::
parseAttribute
(
const
OUString
&
rTokenName
,
SVGToken
aSVGToken
,
const
OUString
&
aContent
)
...
...
svgio/source/svgreader/svglinenode.cxx
Dosyayı görüntüle @
c76b97d3
...
...
@@ -45,7 +45,7 @@ namespace svgio
const
SvgStyleAttributes
*
SvgLineNode
::
getSvgStyleAttributes
()
const
{
return
checkForCssStyle
(
OUString
(
"line"
)
,
maSvgStyleAttributes
);
return
checkForCssStyle
(
"line"
,
maSvgStyleAttributes
);
}
void
SvgLineNode
::
parseAttribute
(
const
OUString
&
rTokenName
,
SVGToken
aSVGToken
,
const
OUString
&
aContent
)
...
...
svgio/source/svgreader/svgmarkernode.cxx
Dosyayı görüntüle @
c76b97d3
...
...
@@ -48,7 +48,7 @@ namespace svgio
const
SvgStyleAttributes
*
SvgMarkerNode
::
getSvgStyleAttributes
()
const
{
return
checkForCssStyle
(
OUString
(
"marker"
)
,
maSvgStyleAttributes
);
return
checkForCssStyle
(
"marker"
,
maSvgStyleAttributes
);
}
void
SvgMarkerNode
::
parseAttribute
(
const
OUString
&
rTokenName
,
SVGToken
aSVGToken
,
const
OUString
&
aContent
)
...
...
svgio/source/svgreader/svgpathnode.cxx
Dosyayı görüntüle @
c76b97d3
...
...
@@ -43,7 +43,7 @@ namespace svgio
const
SvgStyleAttributes
*
SvgPathNode
::
getSvgStyleAttributes
()
const
{
return
checkForCssStyle
(
OUString
(
"path"
)
,
maSvgStyleAttributes
);
return
checkForCssStyle
(
"path"
,
maSvgStyleAttributes
);
}
void
SvgPathNode
::
parseAttribute
(
const
OUString
&
rTokenName
,
SVGToken
aSVGToken
,
const
OUString
&
aContent
)
...
...
svgio/source/svgreader/svgpatternnode.cxx
Dosyayı görüntüle @
c76b97d3
...
...
@@ -62,7 +62,7 @@ namespace svgio
const
SvgStyleAttributes
*
SvgPatternNode
::
getSvgStyleAttributes
()
const
{
return
checkForCssStyle
(
OUString
(
"pattern"
)
,
maSvgStyleAttributes
);
return
checkForCssStyle
(
"pattern"
,
maSvgStyleAttributes
);
}
void
SvgPatternNode
::
parseAttribute
(
const
OUString
&
rTokenName
,
SVGToken
aSVGToken
,
const
OUString
&
aContent
)
...
...
svgio/source/svgreader/svgrectnode.cxx
Dosyayı görüntüle @
c76b97d3
...
...
@@ -47,7 +47,7 @@ namespace svgio
const
SvgStyleAttributes
*
SvgRectNode
::
getSvgStyleAttributes
()
const
{
return
checkForCssStyle
(
OUString
(
"rect"
)
,
maSvgStyleAttributes
);
return
checkForCssStyle
(
"rect"
,
maSvgStyleAttributes
);
}
void
SvgRectNode
::
parseAttribute
(
const
OUString
&
rTokenName
,
SVGToken
aSVGToken
,
const
OUString
&
aContent
)
...
...
svgio/source/svgreader/svgsvgnode.cxx
Dosyayı görüntüle @
c76b97d3
...
...
@@ -112,7 +112,7 @@ namespace svgio
const
SvgStyleAttributes
*
SvgSvgNode
::
getSvgStyleAttributes
()
const
{
// #i125258# svg node can have CssStyles, too, so check for it here
return
checkForCssStyle
(
OUString
(
"svg"
)
,
maSvgStyleAttributes
);
return
checkForCssStyle
(
"svg"
,
maSvgStyleAttributes
);
}
void
SvgSvgNode
::
parseAttribute
(
const
OUString
&
rTokenName
,
SVGToken
aSVGToken
,
const
OUString
&
aContent
)
...
...
svgio/source/svgreader/svgtextnode.cxx
Dosyayı görüntüle @
c76b97d3
...
...
@@ -47,7 +47,7 @@ namespace svgio
const
SvgStyleAttributes
*
SvgTextNode
::
getSvgStyleAttributes
()
const
{
return
checkForCssStyle
(
OUString
(
"text"
)
,
maSvgStyleAttributes
);
return
checkForCssStyle
(
"text"
,
maSvgStyleAttributes
);
}
void
SvgTextNode
::
parseAttribute
(
const
OUString
&
rTokenName
,
SVGToken
aSVGToken
,
const
OUString
&
aContent
)
...
...
svgio/source/svgreader/svgtools.cxx
Dosyayı görüntüle @
c76b97d3
...
...
@@ -228,7 +228,7 @@ namespace svgio
if
(
aViewPort
.
isEmpty
()
)
{
#ifdef DBG_UTIL
myAssert
(
OUString
(
"Design error, this case should have been handled in the caller"
)
);
myAssert
(
"Design error, this case should have been handled in the caller"
);
#endif
// no viewPort, assume a normal page size (A4)
aViewPort
=
basegfx
::
B2DRange
(
...
...
svgio/source/svgreader/svgtspannode.cxx
Dosyayı görüntüle @
c76b97d3
...
...
@@ -39,7 +39,7 @@ namespace svgio
const
SvgStyleAttributes
*
SvgTspanNode
::
getSvgStyleAttributes
()
const
{
// #i125293# Need to support CssStyles in tspan text sections
return
checkForCssStyle
(
OUString
(
"tspan"
)
,
maSvgStyleAttributes
);
return
checkForCssStyle
(
"tspan"
,
maSvgStyleAttributes
);
}
void
SvgTspanNode
::
parseAttribute
(
const
OUString
&
rTokenName
,
SVGToken
aSVGToken
,
const
OUString
&
aContent
)
...
...
svgio/source/svgreader/svgusenode.cxx
Dosyayı görüntüle @
c76b97d3
...
...
@@ -46,7 +46,7 @@ namespace svgio
const
SvgStyleAttributes
*
SvgUseNode
::
getSvgStyleAttributes
()
const
{
return
checkForCssStyle
(
OUString
(
"use"
)
,
maSvgStyleAttributes
);
return
checkForCssStyle
(
"use"
,
maSvgStyleAttributes
);
}
void
SvgUseNode
::
parseAttribute
(
const
OUString
&
rTokenName
,
SVGToken
aSVGToken
,
const
OUString
&
aContent
)
...
...
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