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
a1eeccca
Kaydet (Commit)
a1eeccca
authored
Eyl 19, 2017
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Clean up a couple of overly verbose SAL_INFOs
Change-Id: I2b17bfb95f687617967d4e43356d39aa3bb6e041
üst
2caf3904
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
12 deletions
+1
-12
sbxmod.cxx
basic/source/classes/sbxmod.cxx
+1
-12
No files found.
basic/source/classes/sbxmod.cxx
Dosyayı görüntüle @
a1eeccca
...
@@ -2221,7 +2221,6 @@ public:
...
@@ -2221,7 +2221,6 @@ public:
{
{
if
(
mxComponent
.
is
()
)
if
(
mxComponent
.
is
()
)
{
{
SAL_INFO
(
"basic"
,
"*********** Registering the listeners"
);
try
try
{
{
uno
::
Reference
<
awt
::
XTopWindow
>
(
mxComponent
,
uno
::
UNO_QUERY_THROW
)
->
addTopWindowListener
(
this
);
uno
::
Reference
<
awt
::
XTopWindow
>
(
mxComponent
,
uno
::
UNO_QUERY_THROW
)
->
addTopWindowListener
(
this
);
...
@@ -2255,7 +2254,6 @@ public:
...
@@ -2255,7 +2254,6 @@ public:
{
{
if
(
mxComponent
.
is
()
&&
!
mbDisposed
)
if
(
mxComponent
.
is
()
&&
!
mbDisposed
)
{
{
SAL_INFO
(
"basic"
,
"*********** Removing the listeners"
);
try
try
{
{
uno
::
Reference
<
awt
::
XTopWindow
>
(
mxComponent
,
uno
::
UNO_QUERY_THROW
)
->
removeTopWindowListener
(
this
);
uno
::
Reference
<
awt
::
XTopWindow
>
(
mxComponent
,
uno
::
UNO_QUERY_THROW
)
->
removeTopWindowListener
(
this
);
...
@@ -2397,7 +2395,6 @@ public:
...
@@ -2397,7 +2395,6 @@ public:
virtual
void
SAL_CALL
disposing
(
const
lang
::
EventObject
&
/*Source*/
)
override
virtual
void
SAL_CALL
disposing
(
const
lang
::
EventObject
&
/*Source*/
)
override
{
{
SAL_INFO
(
"basic"
,
"** Userform/Dialog disposing"
);
removeListener
();
removeListener
();
mbDisposed
=
true
;
mbDisposed
=
true
;
if
(
mpUserForm
)
if
(
mpUserForm
)
...
@@ -2436,7 +2433,7 @@ void SbUserFormModule::triggerMethod( const OUString& aMethodToRun )
...
@@ -2436,7 +2433,7 @@ void SbUserFormModule::triggerMethod( const OUString& aMethodToRun )
void
SbUserFormModule
::
triggerMethod
(
const
OUString
&
aMethodToRun
,
Sequence
<
Any
>&
aArguments
)
void
SbUserFormModule
::
triggerMethod
(
const
OUString
&
aMethodToRun
,
Sequence
<
Any
>&
aArguments
)
{
{
SAL_INFO
(
"basic"
,
"
*** trigger "
<<
aMethodToRun
<<
" ***"
);
SAL_INFO
(
"basic"
,
"
trigger "
<<
aMethodToRun
);
// Search method
// Search method
SbxVariable
*
pMeth
=
SbObjModule
::
Find
(
aMethodToRun
,
SbxClassType
::
Method
);
SbxVariable
*
pMeth
=
SbObjModule
::
Find
(
aMethodToRun
,
SbxClassType
::
Method
);
if
(
pMeth
)
if
(
pMeth
)
...
@@ -2477,14 +2474,11 @@ void SbUserFormModule::triggerMethod( const OUString& aMethodToRun, Sequence< An
...
@@ -2477,14 +2474,11 @@ void SbUserFormModule::triggerMethod( const OUString& aMethodToRun, Sequence< An
void
SbUserFormModule
::
triggerActivateEvent
()
void
SbUserFormModule
::
triggerActivateEvent
()
{
{
SAL_INFO
(
"basic"
,
"**** entering SbUserFormModule::triggerActivate"
);
triggerMethod
(
"UserForm_Activate"
);
triggerMethod
(
"UserForm_Activate"
);
SAL_INFO
(
"basic"
,
"**** leaving SbUserFormModule::triggerActivate"
);
}
}
void
SbUserFormModule
::
triggerDeactivateEvent
()
void
SbUserFormModule
::
triggerDeactivateEvent
()
{
{
SAL_INFO
(
"basic"
,
"**** SbUserFormModule::triggerDeactivate"
);
triggerMethod
(
"Userform_Deactivate"
);
triggerMethod
(
"Userform_Deactivate"
);
}
}
...
@@ -2492,14 +2486,12 @@ void SbUserFormModule::triggerInitializeEvent()
...
@@ -2492,14 +2486,12 @@ void SbUserFormModule::triggerInitializeEvent()
{
{
if
(
mbInit
)
if
(
mbInit
)
return
;
return
;
SAL_INFO
(
"basic"
,
"**** SbUserFormModule::triggerInitializeEvent"
);
triggerMethod
(
"Userform_Initialize"
);
triggerMethod
(
"Userform_Initialize"
);
mbInit
=
true
;
mbInit
=
true
;
}
}
void
SbUserFormModule
::
triggerTerminateEvent
()
void
SbUserFormModule
::
triggerTerminateEvent
()
{
{
SAL_INFO
(
"basic"
,
"**** SbUserFormModule::triggerTerminateEvent"
);
triggerMethod
(
"Userform_Terminate"
);
triggerMethod
(
"Userform_Terminate"
);
mbInit
=
false
;
mbInit
=
false
;
}
}
...
@@ -2543,7 +2535,6 @@ SbxVariable* SbUserFormModuleInstance::Find( const OUString& rName, SbxClassType
...
@@ -2543,7 +2535,6 @@ SbxVariable* SbUserFormModuleInstance::Find( const OUString& rName, SbxClassType
void
SbUserFormModule
::
Load
()
void
SbUserFormModule
::
Load
()
{
{
SAL_INFO
(
"basic"
,
"** load() "
);
// forces a load
// forces a load
if
(
!
pDocObject
.
is
()
)
if
(
!
pDocObject
.
is
()
)
InitObject
();
InitObject
();
...
@@ -2552,8 +2543,6 @@ void SbUserFormModule::Load()
...
@@ -2552,8 +2543,6 @@ void SbUserFormModule::Load()
void
SbUserFormModule
::
Unload
()
void
SbUserFormModule
::
Unload
()
{
{
SAL_INFO
(
"basic"
,
"** Unload() "
);
sal_Int8
nCancel
=
0
;
sal_Int8
nCancel
=
0
;
Sequence
<
Any
>
aParams
;
Sequence
<
Any
>
aParams
;
...
...
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