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
5a4c549d
Kaydet (Commit)
5a4c549d
authored
Ara 18, 2014
tarafından
Julien Nabet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Some cppcheck cleanings: Prefer prefix ++/-- operators for non-primitive types
Change-Id: I899164412ad90653b4228423283f9fbd4cb5fccc
üst
f2ac9fab
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
util.cxx
jvmfwk/plugins/sunmajor/pluginlib/util.cxx
+3
-3
program.cxx
vcl/opengl/program.cxx
+1
-1
OpenGLContext.cxx
vcl/source/opengl/OpenGLContext.cxx
+1
-1
No files found.
jvmfwk/plugins/sunmajor/pluginlib/util.cxx
Dosyayı görüntüle @
5a4c549d
...
@@ -595,7 +595,7 @@ void addJavaInfoFromWinReg(
...
@@ -595,7 +595,7 @@ void addJavaInfoFromWinReg(
// create impl objects
// create impl objects
typedef
std
::
vector
<
OUString
>::
iterator
ItHome
;
typedef
std
::
vector
<
OUString
>::
iterator
ItHome
;
for
(
ItHome
it_home
=
vecJavaHome
.
begin
();
it_home
!=
vecJavaHome
.
end
();
for
(
ItHome
it_home
=
vecJavaHome
.
begin
();
it_home
!=
vecJavaHome
.
end
();
it_home
++
)
++
it_home
)
{
{
getAndAddJREInfoByPath
(
*
it_home
,
allInfos
,
addedInfos
);
getAndAddJREInfoByPath
(
*
it_home
,
allInfos
,
addedInfos
);
}
}
...
@@ -606,7 +606,7 @@ void addJavaInfoFromWinReg(
...
@@ -606,7 +606,7 @@ void addJavaInfoFromWinReg(
{
{
typedef
std
::
vector
<
OUString
>::
iterator
ItHome
;
typedef
std
::
vector
<
OUString
>::
iterator
ItHome
;
for
(
ItHome
it_home
=
vecJavaHome
.
begin
();
it_home
!=
vecJavaHome
.
end
();
for
(
ItHome
it_home
=
vecJavaHome
.
begin
();
it_home
!=
vecJavaHome
.
end
();
it_home
++
)
++
it_home
)
{
{
getAndAddJREInfoByPath
(
*
it_home
,
allInfos
,
addedInfos
);
getAndAddJREInfoByPath
(
*
it_home
,
allInfos
,
addedInfos
);
}
}
...
@@ -657,7 +657,7 @@ bool getJavaInfoFromRegistry(const wchar_t* szRegKey,
...
@@ -657,7 +657,7 @@ bool getJavaInfoFromRegistry(const wchar_t* szRegKey,
//iterate over the vector with java home strings
//iterate over the vector with java home strings
typedef
vector
<
OUString
>::
iterator
ItHome
;
typedef
vector
<
OUString
>::
iterator
ItHome
;
for
(
ItHome
itHome
=
vecJavaHome
.
begin
();
for
(
ItHome
itHome
=
vecJavaHome
.
begin
();
itHome
!=
vecJavaHome
.
end
();
itHome
++
)
itHome
!=
vecJavaHome
.
end
();
++
itHome
)
{
{
if
(
usHomeUrl
.
equals
(
*
itHome
))
if
(
usHomeUrl
.
equals
(
*
itHome
))
{
{
...
...
vcl/opengl/program.cxx
Dosyayı görüntüle @
5a4c549d
...
@@ -57,7 +57,7 @@ bool OpenGLProgram::Clean()
...
@@ -57,7 +57,7 @@ bool OpenGLProgram::Clean()
{
{
glActiveTexture
(
GL_TEXTURE0
+
nIndex
--
);
glActiveTexture
(
GL_TEXTURE0
+
nIndex
--
);
it
->
Unbind
();
it
->
Unbind
();
it
++
;
++
it
;
}
}
maTextures
.
clear
();
maTextures
.
clear
();
}
}
...
...
vcl/source/opengl/OpenGLContext.cxx
Dosyayı görüntüle @
5a4c549d
...
@@ -1168,7 +1168,7 @@ void OpenGLContext::reset()
...
@@ -1168,7 +1168,7 @@ void OpenGLContext::reset()
while
(
it
!=
maPrograms
.
end
()
)
while
(
it
!=
maPrograms
.
end
()
)
{
{
delete
it
->
second
;
delete
it
->
second
;
it
++
;
++
it
;
}
}
maPrograms
.
clear
();
maPrograms
.
clear
();
}
}
...
...
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