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
93b415a6
Kaydet (Commit)
93b415a6
authored
May 31, 2012
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
targetted prefer prefix operators reversion
Change-Id: I7e1ae9622bc89b584ddbb307dac15b0ed56ae563
üst
dc0d009f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
4 deletions
+5
-4
MasterPropertySet.cxx
comphelper/source/property/MasterPropertySet.cxx
+1
-1
MasterPropertySetInfo.cxx
comphelper/source/property/MasterPropertySetInfo.cxx
+1
-1
ZipPackageFolder.cxx
package/source/zippackage/ZipPackageFolder.cxx
+2
-1
ctrlbox.cxx
svtools/source/control/ctrlbox.cxx
+1
-1
No files found.
comphelper/source/property/MasterPropertySet.cxx
Dosyayı görüntüle @
93b415a6
...
...
@@ -95,7 +95,7 @@ MasterPropertySet::~MasterPropertySet()
while
(
aIter
!=
aEnd
)
{
delete
(
*
aIter
).
second
;
++
aIter
;
aIter
++
;
}
}
...
...
comphelper/source/property/MasterPropertySetInfo.cxx
Dosyayı görüntüle @
93b415a6
...
...
@@ -56,7 +56,7 @@ MasterPropertySetInfo::~MasterPropertySetInfo()
while
(
aIter
!=
aEnd
)
{
delete
(
*
aIter
).
second
;
++
aIter
;
aIter
++
;
}
}
...
...
package/source/zippackage/ZipPackageFolder.cxx
Dosyayı görüntüle @
93b415a6
...
...
@@ -725,7 +725,8 @@ void ZipPackageFolder::saveContents( ::rtl::OUString &rPath, std::vector < uno::
}
for
(
ContentHash
::
const_iterator
aCI
=
maContents
.
begin
(),
aEnd
=
maContents
.
end
();
aCI
!=
aEnd
;
++
aCI
)
aCI
!=
aEnd
;
aCI
++
)
{
const
::
rtl
::
OUString
&
rShortName
=
(
*
aCI
).
first
;
const
ContentInfo
&
rInfo
=
*
(
*
aCI
).
second
;
...
...
svtools/source/control/ctrlbox.cxx
Dosyayı görüntüle @
93b415a6
...
...
@@ -394,7 +394,7 @@ long BorderWidthImpl::GuessWidth( long nLine1, long nLine2, long nGap )
while
(
pIt
!=
aToCompare
.
end
()
&&
!
bInvalid
)
{
bInvalid
=
(
nWidth
!=
*
pIt
);
++
pIt
;
pIt
++
;
}
if
(
bInvalid
)
nWidth
=
0.0
;
...
...
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