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
d7904330
Kaydet (Commit)
d7904330
authored
Haz 03, 2013
tarafından
Julien Nabet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Prefer prefix ++/-- operators for non-primitive types
Change-Id: I1310ac912aa2031b15851339fd84d435308350a9
üst
417021ea
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
unoobj2.cxx
sw/source/core/unocore/unoobj2.cxx
+1
-1
webdavcontent.cxx
ucb/source/ucp/webdav/webdavcontent.cxx
+3
-3
No files found.
sw/source/core/unocore/unoobj2.cxx
Dosyayı görüntüle @
d7904330
...
@@ -1877,7 +1877,7 @@ SwXParaFrameEnumeration::SwXParaFrameEnumeration(
...
@@ -1877,7 +1877,7 @@ SwXParaFrameEnumeration::SwXParaFrameEnumeration(
//get all frames that are bound at paragraph or at character
//get all frames that are bound at paragraph or at character
SwPosFlyFrms
aFlyFrms
(
rPaM
.
GetDoc
()
->
GetAllFlyFmts
(
m_pImpl
->
GetCursor
(),
false
,
true
));
SwPosFlyFrms
aFlyFrms
(
rPaM
.
GetDoc
()
->
GetAllFlyFmts
(
m_pImpl
->
GetCursor
(),
false
,
true
));
for
(
SwPosFlyFrms
::
const_iterator
aIter
(
aFlyFrms
.
begin
());
aIter
!=
aFlyFrms
.
end
();
aIter
++
)
for
(
SwPosFlyFrms
::
const_iterator
aIter
(
aFlyFrms
.
begin
());
aIter
!=
aFlyFrms
.
end
();
++
aIter
)
{
{
SwFrmFmt
*
const
pFrmFmt
=
const_cast
<
SwFrmFmt
*>
(
&
((
*
aIter
)
->
GetFmt
()));
SwFrmFmt
*
const
pFrmFmt
=
const_cast
<
SwFrmFmt
*>
(
&
((
*
aIter
)
->
GetFmt
()));
...
...
ucb/source/ucp/webdav/webdavcontent.cxx
Dosyayı görüntüle @
d7904330
...
@@ -94,7 +94,7 @@ static void lcl_sendPartialGETRequest( bool &bError,
...
@@ -94,7 +94,7 @@ static void lcl_sendPartialGETRequest( bool &bError,
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"bytes=0-0"
))));
rtl
::
OUString
(
RTL_CONSTASCII_USTRINGPARAM
(
"bytes=0-0"
))));
for
(
std
::
vector
<
rtl
::
OUString
>::
const_iterator
it
=
aHeaderNames
.
begin
();
for
(
std
::
vector
<
rtl
::
OUString
>::
const_iterator
it
=
aHeaderNames
.
begin
();
it
!=
aHeaderNames
.
end
();
it
++
)
it
!=
aHeaderNames
.
end
();
++
it
)
{
{
if
(
it
->
equalsAsciiL
(
RTL_CONSTASCII_STRINGPARAM
(
"Content-Length"
)
)
)
if
(
it
->
equalsAsciiL
(
RTL_CONSTASCII_STRINGPARAM
(
"Content-Length"
)
)
)
{
{
...
@@ -126,7 +126,7 @@ static void lcl_sendPartialGETRequest( bool &bError,
...
@@ -126,7 +126,7 @@ static void lcl_sendPartialGETRequest( bool &bError,
rtl
::
OUString
aAcceptRanges
,
aContentRange
,
aContentLength
;
rtl
::
OUString
aAcceptRanges
,
aContentRange
,
aContentLength
;
std
::
vector
<
DAVPropertyValue
>
&
aResponseProps
=
aResource
.
properties
;
std
::
vector
<
DAVPropertyValue
>
&
aResponseProps
=
aResource
.
properties
;
for
(
std
::
vector
<
DAVPropertyValue
>::
const_iterator
it
=
aResponseProps
.
begin
();
for
(
std
::
vector
<
DAVPropertyValue
>::
const_iterator
it
=
aResponseProps
.
begin
();
it
!=
aResponseProps
.
end
();
it
++
)
it
!=
aResponseProps
.
end
();
++
it
)
{
{
if
(
it
->
Name
.
equalsAsciiL
(
RTL_CONSTASCII_STRINGPARAM
(
"Accept-Ranges"
)
)
)
if
(
it
->
Name
.
equalsAsciiL
(
RTL_CONSTASCII_STRINGPARAM
(
"Accept-Ranges"
)
)
)
it
->
Value
>>=
aAcceptRanges
;
it
->
Value
>>=
aAcceptRanges
;
...
@@ -160,7 +160,7 @@ static void lcl_sendPartialGETRequest( bool &bError,
...
@@ -160,7 +160,7 @@ static void lcl_sendPartialGETRequest( bool &bError,
if
(
!
aSize
.
equalsAsciiL
(
RTL_CONSTASCII_STRINGPARAM
(
"*"
)))
if
(
!
aSize
.
equalsAsciiL
(
RTL_CONSTASCII_STRINGPARAM
(
"*"
)))
{
{
for
(
std
::
vector
<
DAVPropertyValue
>::
iterator
it
=
aResponseProps
.
begin
();
for
(
std
::
vector
<
DAVPropertyValue
>::
iterator
it
=
aResponseProps
.
begin
();
it
!=
aResponseProps
.
end
();
it
++
)
it
!=
aResponseProps
.
end
();
++
it
)
{
{
if
(
it
->
Name
.
equalsAsciiL
(
RTL_CONSTASCII_STRINGPARAM
(
"Content-Length"
)
)
)
if
(
it
->
Name
.
equalsAsciiL
(
RTL_CONSTASCII_STRINGPARAM
(
"Content-Length"
)
)
)
{
{
...
...
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