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
87004ba2
Kaydet (Commit)
87004ba2
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: Ie9b937c100b44dd914b55d75530e6b6a5fbe2969
üst
1323f9ff
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
5 deletions
+4
-5
srchdlg.hxx
sfx2/inc/srchdlg.hxx
+2
-2
newhelp.cxx
sfx2/source/appl/newhelp.cxx
+1
-2
newhelp.hxx
sfx2/source/appl/newhelp.hxx
+1
-1
No files found.
sfx2/inc/srchdlg.hxx
Dosyayı görüntüle @
87004ba2
...
...
@@ -44,7 +44,7 @@ private:
VclPtr
<
PushButton
>
m_pFindBtn
;
Link
<
SearchDialog
&
,
void
>
m_aFindHdl
;
Link
<
>
m_aCloseHdl
;
Link
<
SearchDialog
*
,
void
>
m_aCloseHdl
;
OUString
m_sConfigName
;
OString
m_sWinState
;
...
...
@@ -62,7 +62,7 @@ public:
virtual
void
dispose
()
SAL_OVERRIDE
;
void
SetFindHdl
(
const
Link
<
SearchDialog
&
,
void
>&
rLink
)
{
m_aFindHdl
=
rLink
;
}
void
SetCloseHdl
(
const
Link
<>&
rLink
)
{
m_aCloseHdl
=
rLink
;
}
void
SetCloseHdl
(
const
Link
<
SearchDialog
*
,
void
>&
rLink
)
{
m_aCloseHdl
=
rLink
;
}
OUString
GetSearchText
()
const
{
return
m_pSearchEdit
->
GetText
();
}
void
SetSearchText
(
const
OUString
&
_rText
)
{
m_pSearchEdit
->
SetText
(
_rText
);
}
...
...
sfx2/source/appl/newhelp.cxx
Dosyayı görüntüle @
87004ba2
...
...
@@ -2342,10 +2342,9 @@ void SfxHelpTextWindow_Impl::FindHdl(sfx2::SearchDialog* pDlg)
IMPL_LINK
(
SfxHelpTextWindow_Impl
,
CloseHdl
,
sfx2
::
SearchDialog
*
,
/*pDlg*/
)
IMPL_LINK
_NOARG_TYPED
(
SfxHelpTextWindow_Impl
,
CloseHdl
,
sfx2
::
SearchDialog
*
,
void
)
{
pSrchDlg
.
clear
();
return
0
;
}
...
...
sfx2/source/appl/newhelp.hxx
Dosyayı görüntüle @
87004ba2
...
...
@@ -454,7 +454,7 @@ private:
DECL_LINK_TYPED
(
SelectHdl
,
Idle
*
,
void
);
DECL_LINK_TYPED
(
NotifyHdl
,
LinkParamNone
*
,
void
);
DECL_LINK_TYPED
(
FindHdl
,
sfx2
::
SearchDialog
&
,
void
);
DECL_LINK
(
CloseHdl
,
sfx2
::
SearchDialog
*
);
DECL_LINK
_TYPED
(
CloseHdl
,
sfx2
::
SearchDialog
*
,
void
);
DECL_LINK_TYPED
(
CheckHdl
,
Button
*
,
void
);
void
FindHdl
(
sfx2
::
SearchDialog
*
);
...
...
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