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
34c55149
Kaydet (Commit)
34c55149
authored
Eyl 15, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert Link<> to typed
Change-Id: I1956a7b3cf1d6f3757e6586b793d4355e0697ca9
üst
50ca487b
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
11 deletions
+6
-11
helpinterceptor.cxx
sfx2/source/appl/helpinterceptor.cxx
+1
-5
helpinterceptor.hxx
sfx2/source/appl/helpinterceptor.hxx
+2
-2
newhelp.cxx
sfx2/source/appl/newhelp.cxx
+2
-3
newhelp.hxx
sfx2/source/appl/newhelp.hxx
+1
-1
No files found.
sfx2/source/appl/helpinterceptor.cxx
Dosyayı görüntüle @
34c55149
...
@@ -292,21 +292,17 @@ HelpListener_Impl::HelpListener_Impl( HelpInterceptor_Impl* pInter )
...
@@ -292,21 +292,17 @@ HelpListener_Impl::HelpListener_Impl( HelpInterceptor_Impl* pInter )
void
SAL_CALL
HelpListener_Impl
::
statusChanged
(
const
::
com
::
sun
::
star
::
frame
::
FeatureStateEvent
&
Event
)
void
SAL_CALL
HelpListener_Impl
::
statusChanged
(
const
::
com
::
sun
::
star
::
frame
::
FeatureStateEvent
&
Event
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
{
{
INetURLObject
aObj
(
Event
.
FeatureURL
.
Complete
);
INetURLObject
aObj
(
Event
.
FeatureURL
.
Complete
);
aFactory
=
aObj
.
GetHost
();
aFactory
=
aObj
.
GetHost
();
aChangeLink
.
Call
(
this
);
aChangeLink
.
Call
(
*
this
);
}
}
void
SAL_CALL
HelpListener_Impl
::
disposing
(
const
::
com
::
sun
::
star
::
lang
::
EventObject
&
)
void
SAL_CALL
HelpListener_Impl
::
disposing
(
const
::
com
::
sun
::
star
::
lang
::
EventObject
&
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
{
{
pInterceptor
->
removeStatusListener
(
this
,
::
com
::
sun
::
star
::
util
::
URL
()
);
pInterceptor
->
removeStatusListener
(
this
,
::
com
::
sun
::
star
::
util
::
URL
()
);
pInterceptor
=
NULL
;
pInterceptor
=
NULL
;
...
...
sfx2/source/appl/helpinterceptor.hxx
Dosyayı görüntüle @
34c55149
...
@@ -119,7 +119,7 @@ class HelpListener_Impl : public ::cppu::WeakImplHelper< ::com::sun::star::frame
...
@@ -119,7 +119,7 @@ class HelpListener_Impl : public ::cppu::WeakImplHelper< ::com::sun::star::frame
{
{
private
:
private
:
HelpInterceptor_Impl
*
pInterceptor
;
HelpInterceptor_Impl
*
pInterceptor
;
Link
<
>
aChangeLink
;
Link
<
HelpListener_Impl
&
,
void
>
aChangeLink
;
OUString
aFactory
;
OUString
aFactory
;
public
:
public
:
...
@@ -130,7 +130,7 @@ public:
...
@@ -130,7 +130,7 @@ public:
virtual
void
SAL_CALL
disposing
(
const
::
com
::
sun
::
star
::
lang
::
EventObject
&
obj
)
virtual
void
SAL_CALL
disposing
(
const
::
com
::
sun
::
star
::
lang
::
EventObject
&
obj
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
void
SetChangeHdl
(
const
Link
<>&
rLink
)
{
aChangeLink
=
rLink
;
}
void
SetChangeHdl
(
const
Link
<
HelpListener_Impl
&
,
void
>&
rLink
)
{
aChangeLink
=
rLink
;
}
OUString
GetFactory
()
const
{
return
aFactory
;
}
OUString
GetFactory
()
const
{
return
aFactory
;
}
};
};
// HelpStatusListener_Impl -----------------------------------------------------
// HelpStatusListener_Impl -----------------------------------------------------
...
...
sfx2/source/appl/newhelp.cxx
Dosyayı görüntüle @
34c55149
...
@@ -2952,10 +2952,9 @@ IMPL_LINK( SfxHelpWindow_Impl, SelectFactoryHdl, SfxHelpIndexWindow_Impl* , pWin
...
@@ -2952,10 +2952,9 @@ IMPL_LINK( SfxHelpWindow_Impl, SelectFactoryHdl, SfxHelpIndexWindow_Impl* , pWin
IMPL_LINK
(
SfxHelpWindow_Impl
,
ChangeHdl
,
HelpListener_Impl
*
,
pListener
)
IMPL_LINK
_TYPED
(
SfxHelpWindow_Impl
,
ChangeHdl
,
HelpListener_Impl
&
,
rListener
,
void
)
{
{
SetFactory
(
pListener
->
GetFactory
()
);
SetFactory
(
rListener
.
GetFactory
()
);
return
0
;
}
}
...
...
sfx2/source/appl/newhelp.hxx
Dosyayı görüntüle @
34c55149
...
@@ -524,7 +524,7 @@ friend class SfxHelpIndexWindow_Impl;
...
@@ -524,7 +524,7 @@ friend class SfxHelpIndexWindow_Impl;
DECL_LINK_TYPED
(
SelectHdl
,
ToolBox
*
,
void
);
DECL_LINK_TYPED
(
SelectHdl
,
ToolBox
*
,
void
);
DECL_LINK
(
OpenHdl
,
void
*
);
DECL_LINK
(
OpenHdl
,
void
*
);
DECL_LINK
(
SelectFactoryHdl
,
SfxHelpIndexWindow_Impl
*
);
DECL_LINK
(
SelectFactoryHdl
,
SfxHelpIndexWindow_Impl
*
);
DECL_LINK
(
ChangeHdl
,
HelpListener_Impl
*
);
DECL_LINK
_TYPED
(
ChangeHdl
,
HelpListener_Impl
&
,
void
);
public
:
public
:
SfxHelpWindow_Impl
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
frame
::
XFrame2
>&
rFrame
,
SfxHelpWindow_Impl
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
frame
::
XFrame2
>&
rFrame
,
...
...
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