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
0410bbaf
Kaydet (Commit)
0410bbaf
authored
Agu 10, 2011
tarafından
Julien Nabet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Some cppcheck cleaning
üst
d7d976c2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
drawinglayeranimation.cxx
slideshow/source/engine/shapes/drawinglayeranimation.cxx
+1
-1
invocation.cxx
stoc/source/invocation/invocation.cxx
+1
-1
ctrlbox.cxx
svtools/source/control/ctrlbox.cxx
+1
-1
helperhittest3d.cxx
svx/source/engine3d/helperhittest3d.cxx
+1
-1
No files found.
slideshow/source/engine/shapes/drawinglayeranimation.cxx
Dosyayı görüntüle @
0410bbaf
...
...
@@ -591,7 +591,7 @@ sal_uInt32 ActivityImpl::ImpRegisterAgainScrollTextMixerState(sal_uInt32 nTime)
sal_uInt32
nRetval
(
0L
);
ImpForceScrollTextAnimNodes
();
if
(
maVector
.
size
())
if
(
!
maVector
.
empty
())
{
sal_uInt32
nRelativeTime
;
ScrollTextAnimNode
*
pNode
=
ImpGetScrollTextAnimNode
(
nTime
,
nRelativeTime
);
...
...
stoc/source/invocation/invocation.cxx
Dosyayı görüntüle @
0410bbaf
...
...
@@ -702,7 +702,7 @@ Any Invocation_Impl::invoke( const OUString& FunctionName, const Sequence<Any>&
catch
(
CannotConvertException
&
rExc
)
{
rExc
.
ArgumentIndex
=
nPos
;
// optionalen Parameter Index hinzufuegen
throw
rExc
;
throw
;
}
}
...
...
svtools/source/control/ctrlbox.cxx
Dosyayı görüntüle @
0410bbaf
...
...
@@ -387,7 +387,7 @@ long BorderWidthImpl::GuessWidth( long nLine1, long nLine2, long nGap )
bInvalid
=
true
;
double
nWidth
=
0.0
;
if
(
!
bInvalid
&&
aToCompare
.
size
()
>
0
)
if
(
(
!
bInvalid
)
&&
(
!
aToCompare
.
empty
())
)
{
nWidth
=
*
aToCompare
.
begin
();
std
::
vector
<
double
>::
iterator
pIt
=
aToCompare
.
begin
();
...
...
svx/source/engine3d/helperhittest3d.cxx
Dosyayı görüntüle @
0410bbaf
...
...
@@ -237,7 +237,7 @@ SVX_DLLPUBLIC void getAllHit3DObjectsSortedFrontToBack(
// copy SdrObject pointers to return result set
::
std
::
vector
<
ImplPairDephAndObject
>::
iterator
aIterator2
(
aDepthAndObjectResults
.
begin
());
for
(;
aIterator2
!=
aDepthAndObjectResults
.
end
();
aIterator2
++
)
for
(;
aIterator2
!=
aDepthAndObjectResults
.
end
();
++
aIterator2
)
{
o_rResult
.
push_back
(
aIterator2
->
getObject
());
}
...
...
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