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
6a6190a7
Kaydet (Commit)
6a6190a7
authored
Eki 28, 2010
tarafından
Jesús Corrius
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make some stl functions less ambiguous (fixes VC++ 10 compilation)
üst
409ed5a0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
GroupManager.hxx
forms/source/component/GroupManager.hxx
+2
-2
property.cxx
forms/source/misc/property.cxx
+1
-1
No files found.
forms/source/component/GroupManager.hxx
Dosyayı görüntüle @
6a6190a7
...
...
@@ -71,7 +71,7 @@ namespace frm
template
<
class
ELEMENT
,
class
LESS_COMPARE
>
sal_Int32
insert_sorted
(
::
std
::
vector
<
ELEMENT
>&
_rArray
,
const
ELEMENT
&
_rNewElement
,
const
LESS_COMPARE
&
_rCompareOp
)
{
typename
::
std
::
vector
<
ELEMENT
>::
iterator
aInsertPos
=
lower_bound
(
typename
::
std
::
vector
<
ELEMENT
>::
iterator
aInsertPos
=
::
std
::
lower_bound
(
_rArray
.
begin
(),
_rArray
.
end
(),
_rNewElement
,
...
...
@@ -84,7 +84,7 @@ namespace frm
template
<
class
ELEMENT
,
class
LESS_COMPARE
>
sal_Bool
seek_entry
(
const
::
std
::
vector
<
ELEMENT
>&
_rArray
,
const
ELEMENT
&
_rNewElement
,
sal_Int32
&
nPos
,
const
LESS_COMPARE
&
_rCompareOp
)
{
typename
::
std
::
vector
<
ELEMENT
>::
const_iterator
aExistentPos
=
lower_bound
(
typename
::
std
::
vector
<
ELEMENT
>::
const_iterator
aExistentPos
=
::
std
::
lower_bound
(
_rArray
.
begin
(),
_rArray
.
end
(),
_rNewElement
,
...
...
forms/source/misc/property.cxx
Dosyayı görüntüle @
6a6190a7
...
...
@@ -54,7 +54,7 @@ sal_Int32 PropertyInfoService::getPropertyId(const ::rtl::OUString& _rName)
PropertyAssignment
aCompareName
(
_rName
,
-
1
);
::
std
::
pair
<
PropertyMapIterator
,
PropertyMapIterator
>
aPair
=
equal_range
(
::
std
::
pair
<
PropertyMapIterator
,
PropertyMapIterator
>
aPair
=
::
std
::
equal_range
(
s_AllKnownProperties
.
begin
(),
s_AllKnownProperties
.
end
(),
aCompareName
,
...
...
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