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
99d4b08d
Kaydet (Commit)
99d4b08d
authored
Nis 27, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
WizardDialog::DeactivatePage return type wants to be bool
Change-Id: Ib44006e339a4e1ee9b5c9201e48861fceef865fd
üst
56a2bc14
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
11 deletions
+11
-11
WCopyTable.hxx
dbaccess/source/ui/inc/WCopyTable.hxx
+1
-1
WCopyTable.cxx
dbaccess/source/ui/misc/WCopyTable.cxx
+3
-3
wizardmachine.hxx
include/svtools/wizardmachine.hxx
+1
-1
wizdlg.hxx
include/svtools/wizdlg.hxx
+1
-1
wizardmachine.cxx
svtools/source/dialogs/wizardmachine.cxx
+3
-3
wizdlg.cxx
svtools/source/dialogs/wizdlg.cxx
+2
-2
No files found.
dbaccess/source/ui/inc/WCopyTable.hxx
Dosyayı görüntüle @
99d4b08d
...
...
@@ -324,7 +324,7 @@ namespace dbaui
virtual
~
OCopyTableWizard
();
virtual
long
DeactivatePage
()
SAL_OVERRIDE
;
virtual
bool
DeactivatePage
()
SAL_OVERRIDE
;
OKButton
&
GetOKButton
()
{
return
static_cast
<
OKButton
&>
(
*
m_pbFinish
);
}
Wizard_Button_Style
GetPressedButton
()
const
{
return
m_ePressed
;
}
void
EnableButton
(
Wizard_Button_Style
eStyle
,
bool
bEnable
);
...
...
dbaccess/source/ui/misc/WCopyTable.cxx
Dosyayı görüntüle @
99d4b08d
...
...
@@ -834,7 +834,7 @@ bool OCopyTableWizard::CheckColumns(sal_Int32& _rnBreakPos)
IMPL_LINK_NOARG
(
OCopyTableWizard
,
ImplOKHdl
)
{
m_ePressed
=
WIZARD_FINISH
;
bool
bFinish
=
DeactivatePage
()
!=
0
;
bool
bFinish
=
DeactivatePage
();
if
(
bFinish
)
{
...
...
@@ -989,10 +989,10 @@ void OCopyTableWizard::EnableButton(Wizard_Button_Style eStyle, bool bEnable)
}
long
OCopyTableWizard
::
DeactivatePage
()
bool
OCopyTableWizard
::
DeactivatePage
()
{
OWizardPage
*
pPage
=
static_cast
<
OWizardPage
*>
(
GetPage
(
GetCurLevel
()));
return
pPage
?
pPage
->
LeavePage
()
:
sal_False
;
return
pPage
&&
pPage
->
LeavePage
()
;
}
void
OCopyTableWizard
::
AddWizardPage
(
OWizardPage
*
pPage
)
...
...
include/svtools/wizardmachine.hxx
Dosyayı görüntüle @
99d4b08d
...
...
@@ -200,7 +200,7 @@ namespace svt
protected
:
// WizardDialog overridables
virtual
void
ActivatePage
()
SAL_OVERRIDE
;
virtual
long
DeactivatePage
()
SAL_OVERRIDE
;
virtual
bool
DeactivatePage
()
SAL_OVERRIDE
;
// our own overridables
...
...
include/svtools/wizdlg.hxx
Dosyayı görüntüle @
99d4b08d
...
...
@@ -248,7 +248,7 @@ public:
virtual
bool
Notify
(
NotifyEvent
&
rNEvt
)
SAL_OVERRIDE
;
virtual
void
ActivatePage
();
virtual
long
DeactivatePage
();
virtual
bool
DeactivatePage
();
virtual
void
queue_resize
(
StateChangedType
eReason
=
StateChangedType
::
LAYOUT
)
SAL_OVERRIDE
;
...
...
svtools/source/dialogs/wizardmachine.cxx
Dosyayı görüntüle @
99d4b08d
...
...
@@ -270,12 +270,12 @@ namespace svt
}
long
OWizardMachine
::
DeactivatePage
()
bool
OWizardMachine
::
DeactivatePage
()
{
WizardState
nCurrentState
=
getCurrentState
();
if
(
!
leaveState
(
nCurrentState
)
||
!
WizardDialog
::
DeactivatePage
())
return
sal_F
alse
;
return
sal_T
rue
;
return
f
alse
;
return
t
rue
;
}
...
...
svtools/source/dialogs/wizdlg.cxx
Dosyayı görüntüle @
99d4b08d
...
...
@@ -480,12 +480,12 @@ void WizardDialog::ActivatePage()
long
WizardDialog
::
DeactivatePage
()
bool
WizardDialog
::
DeactivatePage
()
{
if
(
maDeactivateHdl
.
IsSet
()
)
return
maDeactivateHdl
.
Call
(
this
);
else
return
sal_T
rue
;
return
t
rue
;
}
...
...
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