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
d30aedb2
Kaydet (Commit)
d30aedb2
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: Id5be64f38fa448271a5364c86c32ffddfc309bbf
üst
7beefb1f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
8 deletions
+7
-8
editdoc.hxx
editeng/source/editeng/editdoc.hxx
+2
-2
impedit.hxx
editeng/source/editeng/impedit.hxx
+4
-4
impedit2.cxx
editeng/source/editeng/impedit2.cxx
+1
-2
No files found.
editeng/source/editeng/editdoc.hxx
Dosyayı görüntüle @
d30aedb2
...
...
@@ -747,7 +747,7 @@ private:
boost
::
ptr_vector
<
ContentNode
>
maContents
;
SfxItemPool
*
pItemPool
;
Link
<
>
aModifyHdl
;
Link
<
LinkParamNone
*
,
void
>
aModifyHdl
;
SvxFont
aDefFont
;
//faster than ever from the pool!!
sal_uInt16
nDefTab
;
...
...
@@ -769,7 +769,7 @@ public:
bool
IsModified
()
const
{
return
bModified
;
}
void
SetModified
(
bool
b
);
void
SetModifyHdl
(
const
Link
<>&
rLink
)
{
aModifyHdl
=
rLink
;
}
void
SetModifyHdl
(
const
Link
<
LinkParamNone
*
,
void
>&
rLink
)
{
aModifyHdl
=
rLink
;
}
void
CreateDefFont
(
bool
bUseStyles
);
const
SvxFont
&
GetDefFont
()
{
return
aDefFont
;
}
...
...
editeng/source/editeng/impedit.hxx
Dosyayı görüntüle @
d30aedb2
...
...
@@ -657,10 +657,10 @@ private:
inline
VirtualDevice
*
GetVirtualDevice
(
const
MapMode
&
rMapMode
,
DrawModeFlags
nDrawMode
);
inline
void
EraseVirtualDevice
()
{
pVirtDev
.
disposeAndClear
();
}
DECL_LINK_TYPED
(
StatusTimerHdl
,
Timer
*
,
void
);
DECL_LINK_TYPED
(
IdleFormatHdl
,
Idle
*
,
void
);
DECL_LINK_TYPED
(
OnlineSpellHdl
,
Timer
*
,
void
);
DECL_LINK
(
DocModified
,
void
*
);
DECL_LINK_TYPED
(
StatusTimerHdl
,
Timer
*
,
void
);
DECL_LINK_TYPED
(
IdleFormatHdl
,
Idle
*
,
void
);
DECL_LINK_TYPED
(
OnlineSpellHdl
,
Timer
*
,
void
);
DECL_LINK
_TYPED
(
DocModified
,
LinkParamNone
*
,
void
);
void
CheckIdleFormatter
();
...
...
editeng/source/editeng/impedit2.cxx
Dosyayı görüntüle @
d30aedb2
...
...
@@ -4370,10 +4370,9 @@ void ImpEditEngine::LeaveBlockNotifications()
}
}
IMPL_LINK_NOARG
(
ImpEditEngine
,
DocModifie
d
)
IMPL_LINK_NOARG
_TYPED
(
ImpEditEngine
,
DocModified
,
LinkParamNone
*
,
voi
d
)
{
aModifyHdl
.
Call
(
NULL
/*GetEditEnginePtr()*/
);
// NULL, because also used for Outliner
return
0
;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
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