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
c310523a
Kaydet (Commit)
c310523a
authored
Agu 20, 2014
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
C++ name lookup is hard, especially for clang tinderbox
Change-Id: I50a25e5cfa219bbdcf0a23c03b8e6a2cff72c3d6
üst
9a42c593
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
unoframe.cxx
sw/source/core/unocore/unoframe.cxx
+4
-2
No files found.
sw/source/core/unocore/unoframe.cxx
Dosyayı görüntüle @
c310523a
...
...
@@ -1232,7 +1232,7 @@ SwXFrame::~SwXFrame()
delete
pProps
;
}
template
<
class
Interface
,
class
Impl
>
template
<
class
Interface
,
class
NameLookupIsHard
>
uno
::
Reference
<
Interface
>
SwXFrame
::
CreateXFrame
(
SwDoc
&
rDoc
,
SwFrmFmt
*
const
pFrmFmt
)
{
...
...
@@ -1244,7 +1244,9 @@ SwXFrame::CreateXFrame(SwDoc & rDoc, SwFrmFmt *const pFrmFmt)
}
if
(
!
xFrame
.
is
())
{
Impl
*
const
pNew
((
pFrmFmt
)
?
new
Impl
(
*
pFrmFmt
)
:
new
Impl
(
&
rDoc
));
NameLookupIsHard
*
const
pNew
((
pFrmFmt
)
?
new
NameLookupIsHard
(
*
pFrmFmt
)
:
new
NameLookupIsHard
(
&
rDoc
));
xFrame
.
set
(
pNew
);
if
(
pFrmFmt
)
{
...
...
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