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
e01bfc7b
Kaydet (Commit)
e01bfc7b
authored
Eyl 17, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
remove unused Link<> field
Change-Id: I0424284b2436bbc7578a2ee9086704409ee014af
üst
20314a1c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
15 deletions
+0
-15
ControlHelper.hxx
formula/source/ui/dlg/ControlHelper.hxx
+0
-3
funcutl.cxx
formula/source/ui/dlg/funcutl.cxx
+0
-12
No files found.
formula/source/ui/dlg/ControlHelper.hxx
Dosyayı görüntüle @
e01bfc7b
...
@@ -88,7 +88,6 @@ class ArgInput
...
@@ -88,7 +88,6 @@ class ArgInput
{
{
private
:
private
:
Link
<
ArgInput
&
,
void
>
aFxClickLink
;
Link
<
ArgInput
&
,
void
>
aFxClickLink
;
Link
<>
aRefClickLink
;
Link
<>
aFxFocusLink
;
Link
<>
aFxFocusLink
;
Link
<>
aRefFocusLink
;
Link
<>
aRefFocusLink
;
Link
<>
aEdFocusLink
;
Link
<>
aEdFocusLink
;
...
@@ -100,7 +99,6 @@ private:
...
@@ -100,7 +99,6 @@ private:
VclPtr
<
RefButton
>
pRefBtn
;
VclPtr
<
RefButton
>
pRefBtn
;
DECL_LINK_TYPED
(
FxBtnClickHdl
,
Button
*
,
void
);
DECL_LINK_TYPED
(
FxBtnClickHdl
,
Button
*
,
void
);
DECL_LINK_TYPED
(
RefBtnClickHdl
,
Button
*
,
void
);
DECL_LINK
(
FxBtnFocusHdl
,
ImageButton
*
);
DECL_LINK
(
FxBtnFocusHdl
,
ImageButton
*
);
DECL_LINK
(
RefBtnFocusHdl
,
RefButton
*
);
DECL_LINK
(
RefBtnFocusHdl
,
RefButton
*
);
DECL_LINK
(
EdFocusHdl
,
ArgEdit
*
);
DECL_LINK
(
EdFocusHdl
,
ArgEdit
*
);
...
@@ -109,7 +107,6 @@ private:
...
@@ -109,7 +107,6 @@ private:
protected
:
protected
:
void
FxClick
();
void
FxClick
();
void
RefClick
();
void
FxFocus
();
void
FxFocus
();
void
RefFocus
();
void
RefFocus
();
void
EdFocus
();
void
EdFocus
();
...
...
formula/source/ui/dlg/funcutl.cxx
Dosyayı görüntüle @
e01bfc7b
...
@@ -167,7 +167,6 @@ void ArgInput::InitArgInput( FixedText* pftArg, PushButton* pbtnFx,
...
@@ -167,7 +167,6 @@ void ArgInput::InitArgInput( FixedText* pftArg, PushButton* pbtnFx,
}
}
if
(
pRefBtn
!=
nullptr
)
if
(
pRefBtn
!=
nullptr
)
{
{
pRefBtn
->
SetClickHdl
(
LINK
(
this
,
ArgInput
,
RefBtnClickHdl
)
);
pRefBtn
->
SetGetFocusHdl
(
LINK
(
this
,
ArgInput
,
RefBtnFocusHdl
)
);
pRefBtn
->
SetGetFocusHdl
(
LINK
(
this
,
ArgInput
,
RefBtnFocusHdl
)
);
}
}
if
(
pEdArg
!=
nullptr
)
if
(
pEdArg
!=
nullptr
)
...
@@ -269,11 +268,6 @@ void ArgInput::FxClick()
...
@@ -269,11 +268,6 @@ void ArgInput::FxClick()
aFxClickLink
.
Call
(
*
this
);
aFxClickLink
.
Call
(
*
this
);
}
}
void
ArgInput
::
RefClick
()
{
aRefClickLink
.
Call
(
this
);
}
void
ArgInput
::
FxFocus
()
void
ArgInput
::
FxFocus
()
{
{
aFxFocusLink
.
Call
(
this
);
aFxFocusLink
.
Call
(
this
);
...
@@ -300,12 +294,6 @@ IMPL_LINK_TYPED( ArgInput, FxBtnClickHdl, Button*, pBtn, void )
...
@@ -300,12 +294,6 @@ IMPL_LINK_TYPED( ArgInput, FxBtnClickHdl, Button*, pBtn, void )
FxClick
();
FxClick
();
}
}
IMPL_LINK_TYPED
(
ArgInput
,
RefBtnClickHdl
,
Button
*
,
pBtn
,
void
)
{
if
(
pRefBtn
==
pBtn
)
RefClick
();
}
IMPL_LINK
(
ArgInput
,
FxBtnFocusHdl
,
ImageButton
*
,
pBtn
)
IMPL_LINK
(
ArgInput
,
FxBtnFocusHdl
,
ImageButton
*
,
pBtn
)
{
{
if
(
pBtn
==
pBtnFx
)
if
(
pBtn
==
pBtnFx
)
...
...
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