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
14a4b8e0
Kaydet (Commit)
14a4b8e0
authored
Agu 15, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
need the version that allows NULL for a while still
Change-Id: Ie7c61ad75b60bb2900a843df7fb12add03a20bf2
üst
9fbb4c6c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
8 deletions
+7
-8
tabdlg.cxx
sfx2/source/dialog/tabdlg.cxx
+7
-8
No files found.
sfx2/source/dialog/tabdlg.cxx
Dosyayı görüntüle @
14a4b8e0
...
@@ -455,38 +455,37 @@ void SfxTabDialog::Init_Impl(bool bFmtFlag)
...
@@ -455,38 +455,37 @@ void SfxTabDialog::Init_Impl(bool bFmtFlag)
m_pBox
=
get_content_area
();
m_pBox
=
get_content_area
();
assert
(
m_pBox
);
assert
(
m_pBox
);
m_pUIBuilder
->
get
(
m_pTabCtrl
,
"tabcontrol"
);
m_pUIBuilder
->
get
(
m_pTabCtrl
,
"tabcontrol"
);
assert
(
m_pTabCtrl
);
pImpl
=
new
TabDlg_Impl
(
m_pTabCtrl
->
GetPageCount
());
pImpl
=
new
TabDlg_Impl
(
m_pTabCtrl
->
GetPageCount
());
m_pActionArea
=
get_action_area
();
m_pActionArea
=
get_action_area
();
assert
(
m_pActionArea
);
assert
(
m_pActionArea
);
m_p
UIBuilder
->
get
(
m_pOKBtn
,
"ok"
);
m_p
OKBtn
=
m_pUIBuilder
->
get
<
PushButton
>
(
"ok"
);
m_bOwnsOKBtn
=
m_pOKBtn
==
NULL
;
m_bOwnsOKBtn
=
m_pOKBtn
==
NULL
;
if
(
m_bOwnsOKBtn
)
if
(
m_bOwnsOKBtn
)
m_pOKBtn
=
new
OKButton
(
m_pActionArea
);
m_pOKBtn
=
new
OKButton
(
m_pActionArea
);
m_p
UIBuilder
->
get
(
m_pApplyBtn
,
"apply"
);
m_p
ApplyBtn
=
m_pUIBuilder
->
get
<
PushButton
>
(
"apply"
);
m_pU
IBuilder
->
get
(
m_pUserBtn
,
"user"
);
m_pU
serBtn
=
m_pUIBuilder
->
get
<
PushButton
>
(
"user"
);
m_p
UIBuilder
->
get
(
m_pCancelBtn
,
"cancel"
);
m_p
CancelBtn
=
m_pUIBuilder
->
get
<
CancelButton
>
(
"cancel"
);
m_bOwnsCancelBtn
=
m_pCancelBtn
==
NULL
;
m_bOwnsCancelBtn
=
m_pCancelBtn
==
NULL
;
if
(
m_bOwnsCancelBtn
)
if
(
m_bOwnsCancelBtn
)
m_pCancelBtn
=
new
CancelButton
(
m_pActionArea
);
m_pCancelBtn
=
new
CancelButton
(
m_pActionArea
);
m_p
UIBuilder
->
get
(
m_pHelpBtn
,
"help"
);
m_p
HelpBtn
=
m_pUIBuilder
->
get
<
HelpButton
>
(
"help"
);
m_bOwnsHelpBtn
=
m_pHelpBtn
==
NULL
;
m_bOwnsHelpBtn
=
m_pHelpBtn
==
NULL
;
if
(
m_bOwnsHelpBtn
)
if
(
m_bOwnsHelpBtn
)
m_pHelpBtn
=
new
HelpButton
(
m_pActionArea
);
m_pHelpBtn
=
new
HelpButton
(
m_pActionArea
);
m_p
UIBuilder
->
get
(
m_pResetBtn
,
"reset"
);
m_p
ResetBtn
=
m_pUIBuilder
->
get
<
PushButton
>
(
"reset"
);
m_bOwnsResetBtn
=
m_pResetBtn
==
NULL
;
m_bOwnsResetBtn
=
m_pResetBtn
==
NULL
;
if
(
m_bOwnsResetBtn
)
if
(
m_bOwnsResetBtn
)
m_pResetBtn
=
new
PushButton
(
m_pActionArea
);
m_pResetBtn
=
new
PushButton
(
m_pActionArea
);
else
else
pImpl
->
bHideResetBtn
=
!
m_pResetBtn
->
IsVisible
();
pImpl
->
bHideResetBtn
=
!
m_pResetBtn
->
IsVisible
();
m_p
UIBuilder
->
get
(
m_pBaseFmtBtn
,
"standard"
);
m_p
BaseFmtBtn
=
m_pUIBuilder
->
get
<
PushButton
>
(
"standard"
);
m_bOwnsBaseFmtBtn
=
m_pBaseFmtBtn
==
NULL
;
m_bOwnsBaseFmtBtn
=
m_pBaseFmtBtn
==
NULL
;
if
(
m_bOwnsBaseFmtBtn
)
if
(
m_bOwnsBaseFmtBtn
)
m_pBaseFmtBtn
=
new
PushButton
(
m_pActionArea
);
m_pBaseFmtBtn
=
new
PushButton
(
m_pActionArea
);
...
...
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