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
8ad9cc04
Kaydet (Commit)
8ad9cc04
authored
Eyl 07, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert Link<> to typed
Change-Id: Ia7bdaa3a02af8f81884d81d60c0f135af2f8aeae
üst
60df720f
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
16 additions
and
49 deletions
+16
-49
ctredlin.hxx
include/svx/ctredlin.hxx
+5
-10
acredlin.hxx
sc/source/ui/inc/acredlin.hxx
+2
-2
highred.hxx
sc/source/ui/inc/highred.hxx
+3
-3
acredlin.cxx
sc/source/ui/miscdlgs/acredlin.cxx
+2
-4
highred.cxx
sc/source/ui/miscdlgs/highred.cxx
+1
-2
ctredlin.cxx
svx/source/dialog/ctredlin.cxx
+0
-23
swmodalredlineacceptdlg.cxx
sw/source/ui/misc/swmodalredlineacceptdlg.cxx
+1
-1
redlndlg.hxx
sw/source/uibase/inc/redlndlg.hxx
+1
-1
redlndlg.cxx
sw/source/uibase/misc/redlndlg.cxx
+1
-3
No files found.
include/svx/ctredlin.hxx
Dosyayı görüntüle @
8ad9cc04
...
...
@@ -170,13 +170,8 @@ class SVX_DLLPUBLIC SAL_WARN_UNUSED SvxTPFilter: public TabPage
{
private
:
Link
<>
aReadyLink
;
Link
<>
aModifyLink
;
Link
<>
aModifyDateLink
;
Link
<>
aModifyAuthorLink
;
Link
<>
aModifyRefLink
;
Link
<>
aRefLink
;
Link
<>
aModifyComLink
;
Link
<
SvxTPFilter
*
,
void
>
aReadyLink
;
Link
<
SvxTPFilter
*
,
void
>
aRefLink
;
VclPtr
<
SvxRedlinTable
>
pRedlinTable
;
VclPtr
<
CheckBox
>
m_pCbDate
;
...
...
@@ -197,7 +192,7 @@ private:
VclPtr
<
ListBox
>
m_pLbAction
;
VclPtr
<
CheckBox
>
m_pCbComment
;
VclPtr
<
Edit
>
m_pEdComment
;
bool
bModified
;
bool
bModified
;
DECL_LINK
(
SelDateHdl
,
ListBox
*
);
DECL_LINK_TYPED
(
RowEnableHdl
,
Button
*
,
void
);
...
...
@@ -264,11 +259,11 @@ public:
ListBox
*
GetLbAction
()
{
return
m_pLbAction
;}
void
SetReadyHdl
(
const
Link
<>&
rLink
)
{
aReadyLink
=
rLink
;
}
void
SetReadyHdl
(
const
Link
<
SvxTPFilter
*
,
void
>&
rLink
)
{
aReadyLink
=
rLink
;
}
// Methods for Calc {
void
SetRefHdl
(
const
Link
<>&
rLink
)
{
aRefLink
=
rLink
;
}
void
SetRefHdl
(
const
Link
<
SvxTPFilter
*
,
void
>&
rLink
)
{
aRefLink
=
rLink
;
}
void
Enable
(
bool
bEnable
=
true
,
bool
bChild
=
true
);
void
Disable
(
bool
bChild
=
true
);
...
...
sc/source/ui/inc/acredlin.hxx
Dosyayı görüntüle @
8ad9cc04
...
...
@@ -97,8 +97,8 @@ private:
void
Init
();
void
InitFilter
();
DECL_LINK
(
FilterHandle
,
SvxTPFilter
*
);
DECL_LINK
(
RefHandle
,
void
*
);
DECL_LINK
_TYPED
(
FilterHandle
,
SvxTPFilter
*
,
void
);
DECL_LINK
_TYPED
(
RefHandle
,
SvxTPFilter
*
,
void
);
DECL_LINK
(
RejectHandle
,
SvxTPView
*
);
DECL_LINK
(
AcceptHandle
,
SvxTPView
*
);
DECL_LINK
(
RejectAllHandle
,
void
*
);
...
...
sc/source/ui/inc/highred.hxx
Dosyayı görüntüle @
8ad9cc04
...
...
@@ -60,9 +60,9 @@ private:
void
Init
();
DECL_LINK
(
RefHandle
,
SvxTPFilter
*
);
DECL_LINK_TYPED
(
HighlightHandle
,
Button
*
,
void
);
DECL_LINK_TYPED
(
OKBtnHdl
,
Button
*
,
void
);
DECL_LINK
_TYPED
(
RefHandle
,
SvxTPFilter
*
,
void
);
DECL_LINK_TYPED
(
HighlightHandle
,
Button
*
,
void
);
DECL_LINK_TYPED
(
OKBtnHdl
,
Button
*
,
void
);
protected
:
...
...
sc/source/ui/miscdlgs/acredlin.cxx
Dosyayı görüntüle @
8ad9cc04
...
...
@@ -864,7 +864,7 @@ void ScAcceptChgDlg::UpdateView()
pTheView
->
Select
(
pEntry
);
}
IMPL_LINK_NOARG
(
ScAcceptChgDlg
,
RefHandle
)
IMPL_LINK_NOARG
_TYPED
(
ScAcceptChgDlg
,
RefHandle
,
SvxTPFilter
*
,
void
)
{
sal_uInt16
nId
=
ScSimpleRefDlgWrapper
::
GetChildWindowId
();
...
...
@@ -888,7 +888,6 @@ IMPL_LINK_NOARG(ScAcceptChgDlg, RefHandle)
pWin
->
SetText
(
GetText
());
pWnd
->
StartRefInput
();
}
return
0
;
}
IMPL_LINK
(
ScAcceptChgDlg
,
RefInfoHandle
,
OUString
*
,
pResult
)
...
...
@@ -925,7 +924,7 @@ IMPL_LINK( ScAcceptChgDlg, RefInfoHandle, OUString*, pResult)
return
0
;
}
IMPL_LINK
(
ScAcceptChgDlg
,
FilterHandle
,
SvxTPFilter
*
,
pRef
)
IMPL_LINK
_TYPED
(
ScAcceptChgDlg
,
FilterHandle
,
SvxTPFilter
*
,
pRef
,
void
)
{
if
(
pRef
!=
NULL
)
{
...
...
@@ -934,7 +933,6 @@ IMPL_LINK( ScAcceptChgDlg, FilterHandle, SvxTPFilter*, pRef )
aRangeList
.
Parse
(
pTPFilter
->
GetRange
(),
pDoc
);
UpdateView
();
}
return
0
;
}
IMPL_LINK
(
ScAcceptChgDlg
,
RejectHandle
,
SvxTPView
*
,
pRef
)
...
...
sc/source/ui/miscdlgs/highred.cxx
Dosyayı görüntüle @
8ad9cc04
...
...
@@ -202,7 +202,7 @@ IMPL_LINK_TYPED( ScHighlightChgDlg, HighlightHandle, Button*, pCb, void )
}
}
IMPL_LINK
(
ScHighlightChgDlg
,
RefHandle
,
SvxTPFilter
*
,
pRef
)
IMPL_LINK
_TYPED
(
ScHighlightChgDlg
,
RefHandle
,
SvxTPFilter
*
,
pRef
,
void
)
{
if
(
pRef
!=
NULL
)
{
...
...
@@ -213,7 +213,6 @@ IMPL_LINK( ScHighlightChgDlg, RefHandle, SvxTPFilter*, pRef )
m_pEdAssign
->
GrabFocus
();
ScAnyRefDlg
::
RefInputStart
(
m_pEdAssign
,
m_pRbAssign
);
}
return
0
;
}
IMPL_LINK_TYPED
(
ScHighlightChgDlg
,
OKBtnHdl
,
Button
*
,
pOKBtn
,
void
)
...
...
svx/source/dialog/ctredlin.cxx
Dosyayı görüntüle @
8ad9cc04
...
...
@@ -971,30 +971,7 @@ IMPL_LINK( SvxTPFilter, ModifyHdl, void*, pCtr)
{
if
(
pCtr
!=
NULL
)
{
if
(
pCtr
==
m_pCbDate
||
pCtr
==
m_pLbDate
||
pCtr
==
m_pDfDate
||
pCtr
==
m_pTfDate
||
pCtr
==
m_pIbClock
||
pCtr
==
m_pFtDate2
||
pCtr
==
m_pDfDate2
||
pCtr
==
m_pTfDate2
||
pCtr
==
m_pIbClock2
)
{
aModifyDateLink
.
Call
(
this
);
}
else
if
(
pCtr
==
m_pCbAuthor
||
pCtr
==
m_pLbAuthor
)
{
aModifyAuthorLink
.
Call
(
this
);
}
else
if
(
pCtr
==
m_pCbRange
||
pCtr
==
m_pLbAction
||
pCtr
==
m_pEdRange
||
pCtr
==
m_pBtnRange
)
{
aModifyRefLink
.
Call
(
this
);
}
else
if
(
pCtr
==
m_pCbComment
||
pCtr
==
m_pEdComment
)
{
aModifyComLink
.
Call
(
this
);
}
bModified
=
true
;
aModifyLink
.
Call
(
this
);
}
return
0
;
}
...
...
sw/source/ui/misc/swmodalredlineacceptdlg.cxx
Dosyayı görüntüle @
8ad9cc04
...
...
@@ -82,7 +82,7 @@ void SwModalRedlineAcceptDlg::AcceptAll( bool bAccept )
pFilterTP
->
CheckAuthor
(
false
);
pFilterTP
->
CheckRange
(
false
);
pFilterTP
->
CheckAction
(
false
);
pImplDlg
->
FilterChangedHdl
();
pImplDlg
->
FilterChangedHdl
(
NULL
);
}
pImplDlg
->
CallAcceptReject
(
false
,
bAccept
);
...
...
sw/source/uibase/inc/redlndlg.hxx
Dosyayı görüntüle @
8ad9cc04
...
...
@@ -114,7 +114,7 @@ public:
SwRedlineAcceptDlg
(
vcl
::
Window
*
pParent
,
VclBuilderContainer
*
pBuilder
,
vcl
::
Window
*
pContentArea
,
bool
bAutoFormat
=
false
);
virtual
~
SwRedlineAcceptDlg
();
DECL_LINK
(
FilterChangedHdl
,
void
*
=
0
);
DECL_LINK
_TYPED
(
FilterChangedHdl
,
SvxTPFilter
*
,
void
);
inline
SvxAcceptChgCtr
&
GetChgCtrl
()
{
return
*
aTabPagesCTRL
.
get
();
}
inline
bool
HasRedlineAutoFormat
()
const
{
return
bRedlnAutoFormat
;
}
...
...
sw/source/uibase/misc/redlndlg.cxx
Dosyayı görüntüle @
8ad9cc04
...
...
@@ -919,7 +919,7 @@ IMPL_LINK_NOARG(SwRedlineAcceptDlg, UndoHdl)
return
0
;
}
IMPL_LINK_NOARG
(
SwRedlineAcceptDlg
,
FilterChangedHdl
)
IMPL_LINK_NOARG
_TYPED
(
SwRedlineAcceptDlg
,
FilterChangedHdl
,
SvxTPFilter
*
,
void
)
{
SvxTPFilter
*
pFilterTP
=
aTabPagesCTRL
->
GetFilterPage
();
...
...
@@ -929,8 +929,6 @@ IMPL_LINK_NOARG(SwRedlineAcceptDlg, FilterChangedHdl)
sFilterAction
=
aEmptyOUStr
;
Init
();
return
0
;
}
IMPL_LINK_NOARG_TYPED
(
SwRedlineAcceptDlg
,
DeselectHdl
,
SvTreeListBox
*
,
void
)
...
...
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