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
6ce7808d
Kaydet (Commit)
6ce7808d
authored
Şub 26, 2015
tarafından
Bjoern Michaelsen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
unique_ptr, constness, naming conventions
Change-Id: I37cbfbcc887ec82e750ba1bc614f4eda77be933b
üst
7deb4c93
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
fetab.cxx
sw/source/core/frmedt/fetab.cxx
+4
-5
No files found.
sw/source/core/frmedt/fetab.cxx
Dosyayı görüntüle @
6ce7808d
...
...
@@ -83,19 +83,18 @@ const SwFrm *pRowCacheLastCellFrm = 0;
class
TblWait
{
SwWait
*
pWait
;
::
std
::
unique_ptr
<
SwWait
>
m_
pWait
;
public
:
TblWait
(
size_t
nCnt
,
SwFrm
*
pFrm
,
SwDocShell
&
rDocShell
,
size_t
nCnt2
=
0
);
~
TblWait
()
{
delete
pWait
;
}
};
TblWait
::
TblWait
(
size_t
const
nCnt
,
SwFrm
*
pFrm
,
SwDocShell
&
rDocShell
,
size_t
const
nCnt2
)
:
pWait
(
0
)
m_pWait
(
nullptr
)
{
bool
bWait
=
20
<
nCnt
||
20
<
nCnt2
||
(
pFrm
&&
const
bool
bWait
=
20
<
nCnt
||
20
<
nCnt2
||
(
pFrm
&&
20
<
pFrm
->
ImplFindTabFrm
()
->
GetTable
()
->
GetTabLines
().
size
());
if
(
bWait
)
pWait
=
new
SwWait
(
rDocShell
,
true
);
m_pWait
=
::
std
::
unique_ptr
<
SwWait
>
(
new
SwWait
(
rDocShell
,
true
)
);
}
void
SwFEShell
::
ParkCursorInTab
()
...
...
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