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
d4fac516
Kaydet (Commit)
d4fac516
authored
May 31, 2012
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
targetted revert of small prefix operator changes
Change-Id: I02e9af0034f4e9ed626615083c7c1506597f2a7e
üst
c326e8c6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
WrapPolygonHandler.cxx
writerfilter/source/dmapper/WrapPolygonHandler.cxx
+3
-3
XPathLogger.cxx
writerfilter/source/resourcemodel/XPathLogger.cxx
+2
-1
No files found.
writerfilter/source/dmapper/WrapPolygonHandler.cxx
Dosyayı görüntüle @
d4fac516
...
...
@@ -90,7 +90,7 @@ WrapPolygon::Pointer_t WrapPolygon::move(const awt::Point & rPoint)
{
awt
::
Point
aPoint
(
aIt
->
X
+
rPoint
.
X
,
aIt
->
Y
+
rPoint
.
Y
);
pResult
->
addPoint
(
aPoint
);
++
aIt
;
aIt
++
;
}
return
pResult
;
...
...
@@ -107,7 +107,7 @@ WrapPolygon::Pointer_t WrapPolygon::scale(const Fraction & rFractionX, const Fra
{
awt
::
Point
aPoint
(
Fraction
(
aIt
->
X
)
*
rFractionX
,
Fraction
(
aIt
->
Y
)
*
rFractionY
);
pResult
->
addPoint
(
aPoint
);
++
aIt
;
aIt
++
;
}
return
pResult
;
...
...
@@ -149,7 +149,7 @@ drawing::PointSequenceSequence WrapPolygon::getPointSequenceSequence() const
{
(
*
pPolygon
)[
n
]
=
*
aIt
;
++
n
;
++
aIt
;
aIt
++
;
}
return
aPolyPolygon
;
...
...
writerfilter/source/resourcemodel/XPathLogger.cxx
Dosyayı görüntüle @
d4fac516
...
...
@@ -52,7 +52,8 @@ void XPathLogger::updateCurrentPath()
m_currentPath
=
""
;
for
(
vector
<
string
>::
const_iterator
aIt
=
m_path
.
begin
();
aIt
!=
m_path
.
end
();
++
aIt
)
aIt
!=
m_path
.
end
();
aIt
++
)
{
if
(
m_currentPath
.
size
()
>
0
)
m_currentPath
+=
"/"
;
...
...
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