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
5314ece7
Kaydet (Commit)
5314ece7
authored
Kas 21, 2014
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make the ctor and dtor bodies non-inline.
Change-Id: Ie36e3dfa808aec96c080f981a5ad9f09a0720c2c
üst
01e14bd4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
14 deletions
+16
-14
childwin.hxx
include/sfx2/childwin.hxx
+3
-14
childwin.cxx
sfx2/source/appl/childwin.cxx
+13
-0
No files found.
include/sfx2/childwin.hxx
Dosyayı görüntüle @
5314ece7
...
@@ -94,7 +94,7 @@ struct SfxChildWinContextFactory
...
@@ -94,7 +94,7 @@ struct SfxChildWinContextFactory
typedef
boost
::
ptr_vector
<
SfxChildWinContextFactory
>
SfxChildWinContextArr_Impl
;
typedef
boost
::
ptr_vector
<
SfxChildWinContextFactory
>
SfxChildWinContextArr_Impl
;
struct
SfxChildWinFactory
struct
S
FX2_DLLPUBLIC
S
fxChildWinFactory
{
{
SfxChildWinCtor
pCtor
;
// Factory method
SfxChildWinCtor
pCtor
;
// Factory method
sal_uInt16
nId
;
// ChildWindow-Id ( SlotId )
sal_uInt16
nId
;
// ChildWindow-Id ( SlotId )
...
@@ -102,19 +102,8 @@ struct SfxChildWinFactory
...
@@ -102,19 +102,8 @@ struct SfxChildWinFactory
sal_uInt16
nPos
;
// Position in UI
sal_uInt16
nPos
;
// Position in UI
SfxChildWinContextArr_Impl
*
pArr
;
// Array for Contexts
SfxChildWinContextArr_Impl
*
pArr
;
// Array for Contexts
SfxChildWinFactory
(
SfxChildWinCtor
pTheCtor
,
sal_uInt16
nID
,
SfxChildWinFactory
(
SfxChildWinCtor
pTheCtor
,
sal_uInt16
nID
,
sal_uInt16
n
);
sal_uInt16
n
)
~
SfxChildWinFactory
();
:
pCtor
(
pTheCtor
)
,
nId
(
nID
)
,
nPos
(
n
)
,
pArr
(
NULL
)
{}
~
SfxChildWinFactory
()
{
delete
pArr
;
}
};
};
class
FloatingWindow
;
class
FloatingWindow
;
...
...
sfx2/source/appl/childwin.cxx
Dosyayı görüntüle @
5314ece7
...
@@ -40,6 +40,19 @@
...
@@ -40,6 +40,19 @@
static
const
sal_uInt16
nVersion
=
2
;
static
const
sal_uInt16
nVersion
=
2
;
SfxChildWinFactory
::
SfxChildWinFactory
(
SfxChildWinCtor
pTheCtor
,
sal_uInt16
nID
,
sal_uInt16
n
)
:
pCtor
(
pTheCtor
)
,
nId
(
nID
)
,
nPos
(
n
)
,
pArr
(
NULL
)
{}
SfxChildWinFactory
::~
SfxChildWinFactory
()
{
delete
pArr
;
}
struct
SfxChildWindow_Impl
struct
SfxChildWindow_Impl
{
{
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
frame
::
XFrame
>
xFrame
;
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
frame
::
XFrame
>
xFrame
;
...
...
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