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
0c6cd530
Kaydet (Commit)
0c6cd530
authored
May 26, 2014
tarafından
Chris Sherlock
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
vcl: move GetSystemData() & GetSystemDataAny() back to window.cxx
Change-Id: I46736950563776bb4f5fefd71789010541e99e70
üst
ee1bef41
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
18 deletions
+18
-18
stacking.cxx
vcl/source/window/stacking.cxx
+0
-18
window.cxx
vcl/source/window/window.cxx
+18
-0
No files found.
vcl/source/window/stacking.cxx
Dosyayı görüntüle @
0c6cd530
...
@@ -1174,22 +1174,4 @@ void Window::ImplSetFrameParent( const Window* pParent )
...
@@ -1174,22 +1174,4 @@ void Window::ImplSetFrameParent( const Window* pParent )
}
}
}
}
const
SystemEnvData
*
Window
::
GetSystemData
()
const
{
return
mpWindowImpl
->
mpFrame
?
mpWindowImpl
->
mpFrame
->
GetSystemData
()
:
NULL
;
}
::
com
::
sun
::
star
::
uno
::
Any
Window
::
GetSystemDataAny
()
const
{
::
com
::
sun
::
star
::
uno
::
Any
aRet
;
const
SystemEnvData
*
pSysData
=
GetSystemData
();
if
(
pSysData
)
{
::
com
::
sun
::
star
::
uno
::
Sequence
<
sal_Int8
>
aSeq
(
(
sal_Int8
*
)
pSysData
,
pSysData
->
nSize
);
aRet
<<=
aSeq
;
}
return
aRet
;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
vcl/source/window/window.cxx
Dosyayı görüntüle @
0c6cd530
...
@@ -3866,4 +3866,22 @@ void Window::DrawGradientWallpaper( long nX, long nY,
...
@@ -3866,4 +3866,22 @@ void Window::DrawGradientWallpaper( long nX, long nY,
mpMetaFile
=
pOldMetaFile
;
mpMetaFile
=
pOldMetaFile
;
}
}
const
SystemEnvData
*
Window
::
GetSystemData
()
const
{
return
mpWindowImpl
->
mpFrame
?
mpWindowImpl
->
mpFrame
->
GetSystemData
()
:
NULL
;
}
css
::
uno
::
Any
Window
::
GetSystemDataAny
()
const
{
css
::
uno
::
Any
aRet
;
const
SystemEnvData
*
pSysData
=
GetSystemData
();
if
(
pSysData
)
{
css
::
uno
::
Sequence
<
sal_Int8
>
aSeq
(
(
sal_Int8
*
)
pSysData
,
pSysData
->
nSize
);
aRet
<<=
aSeq
;
}
return
aRet
;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
/* 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