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
7320072e
Kaydet (Commit)
7320072e
authored
Eki 16, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert Link<> to typed
Change-Id: I39a0b4d5fb62ae66926148103b396578ed37405d
üst
a9bb16e8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
8 deletions
+6
-8
sfxdlg.hxx
include/sfx2/sfxdlg.hxx
+1
-1
swdlgfact.cxx
sw/source/ui/dialog/swdlgfact.cxx
+1
-1
swdlgfact.hxx
sw/source/ui/dialog/swdlgfact.hxx
+2
-2
docst.cxx
sw/source/uibase/app/docst.cxx
+2
-4
No files found.
include/sfx2/sfxdlg.hxx
Dosyayı görüntüle @
7320072e
...
@@ -79,7 +79,7 @@ public:
...
@@ -79,7 +79,7 @@ public:
class
SfxAbstractApplyTabDialog
:
virtual
public
SfxAbstractTabDialog
class
SfxAbstractApplyTabDialog
:
virtual
public
SfxAbstractTabDialog
{
{
public
:
public
:
virtual
void
SetApplyHdl
(
const
Link
<>&
rLink
)
=
0
;
virtual
void
SetApplyHdl
(
const
Link
<
LinkParamNone
*
,
void
>&
rLink
)
=
0
;
};
};
class
SfxAbstractInsertObjectDialog
:
virtual
public
VclAbstractDialog
class
SfxAbstractInsertObjectDialog
:
virtual
public
VclAbstractDialog
...
...
sw/source/ui/dialog/swdlgfact.cxx
Dosyayı görüntüle @
7320072e
...
@@ -167,7 +167,7 @@ IMPL_LINK_NOARG_TYPED(AbstractApplyTabDialog_Impl, ApplyHdl, Button*, void)
...
@@ -167,7 +167,7 @@ IMPL_LINK_NOARG_TYPED(AbstractApplyTabDialog_Impl, ApplyHdl, Button*, void)
m_aHandler
.
Call
(
NULL
);
m_aHandler
.
Call
(
NULL
);
}
}
void
AbstractApplyTabDialog_Impl
::
SetApplyHdl
(
const
Link
<>&
rLink
)
void
AbstractApplyTabDialog_Impl
::
SetApplyHdl
(
const
Link
<
LinkParamNone
*
,
void
>&
rLink
)
{
{
m_aHandler
=
rLink
;
m_aHandler
=
rLink
;
pDlg
->
SetApplyHandler
(
LINK
(
this
,
AbstractApplyTabDialog_Impl
,
ApplyHdl
));
pDlg
->
SetApplyHandler
(
LINK
(
this
,
AbstractApplyTabDialog_Impl
,
ApplyHdl
));
...
...
sw/source/ui/dialog/swdlgfact.hxx
Dosyayı görüntüle @
7320072e
...
@@ -133,8 +133,8 @@ public:
...
@@ -133,8 +133,8 @@ public:
}
}
DECL_LINK_TYPED
(
ApplyHdl
,
Button
*
,
void
);
DECL_LINK_TYPED
(
ApplyHdl
,
Button
*
,
void
);
private
:
private
:
Link
<>
m_aHandler
;
Link
<
LinkParamNone
*
,
void
>
m_aHandler
;
virtual
void
SetApplyHdl
(
const
Link
<>&
rLink
)
override
;
virtual
void
SetApplyHdl
(
const
Link
<
LinkParamNone
*
,
void
>&
rLink
)
override
;
};
};
class
AbstractSwConvertTableDlg_Impl
:
public
AbstractSwConvertTableDlg
class
AbstractSwConvertTableDlg_Impl
:
public
AbstractSwConvertTableDlg
...
...
sw/source/uibase/app/docst.cxx
Dosyayı görüntüle @
7320072e
...
@@ -515,7 +515,7 @@ public:
...
@@ -515,7 +515,7 @@ public:
,
m_bModified
(
bModified
)
,
m_bModified
(
bModified
)
{
{
}
}
DECL_LINK
(
ApplyHdl
,
void
*
);
DECL_LINK
_TYPED
(
ApplyHdl
,
LinkParamNone
*
,
void
);
void
apply
()
void
apply
()
{
{
ApplyHdl
(
NULL
);
ApplyHdl
(
NULL
);
...
@@ -533,7 +533,7 @@ private:
...
@@ -533,7 +533,7 @@ private:
bool
m_bModified
;
bool
m_bModified
;
};
};
IMPL_LINK_NOARG
(
ApplyStyle
,
ApplyHdl
)
IMPL_LINK_NOARG
_TYPED
(
ApplyStyle
,
ApplyHdl
,
LinkParamNone
*
,
void
)
{
{
SwWrtShell
*
pWrtShell
=
m_rDocSh
.
GetWrtShell
();
SwWrtShell
*
pWrtShell
=
m_rDocSh
.
GetWrtShell
();
SwDoc
*
pDoc
=
m_rDocSh
.
GetDoc
();
SwDoc
*
pDoc
=
m_rDocSh
.
GetDoc
();
...
@@ -611,8 +611,6 @@ IMPL_LINK_NOARG(ApplyStyle, ApplyHdl)
...
@@ -611,8 +611,6 @@ IMPL_LINK_NOARG(ApplyStyle, ApplyHdl)
}
}
pWrtShell
->
EndAllAction
();
pWrtShell
->
EndAllAction
();
return
m_nRet
;
}
}
sal_uInt16
SwDocShell
::
Edit
(
sal_uInt16
SwDocShell
::
Edit
(
...
...
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