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
c1448b42
Kaydet (Commit)
c1448b42
authored
Eki 24, 2016
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
no raw Window is loaded from .src anymore
Change-Id: I81e4bb23f4a819f59115cdf58afe19097b4ce68f
üst
141a7aa1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
22 deletions
+0
-22
fntctrl.hxx
include/svx/fntctrl.hxx
+0
-1
window.hxx
include/vcl/window.hxx
+0
-1
fntctrl.cxx
svx/source/dialog/fntctrl.cxx
+0
-8
window.cxx
vcl/source/window/window.cxx
+0
-12
No files found.
include/svx/fntctrl.hxx
Dosyayı görüntüle @
c1448b42
...
@@ -45,7 +45,6 @@ private:
...
@@ -45,7 +45,6 @@ private:
SVX_DLLPRIVATE
static
void
SetFontLang
(
const
SfxItemSet
&
rSet
,
sal_uInt16
nSlot
,
SvxFont
&
rFont
);
SVX_DLLPRIVATE
static
void
SetFontLang
(
const
SfxItemSet
&
rSet
,
sal_uInt16
nSlot
,
SvxFont
&
rFont
);
public
:
public
:
SvxFontPrevWindow
(
vcl
::
Window
*
pParent
,
const
ResId
&
rId
);
SvxFontPrevWindow
(
vcl
::
Window
*
pParent
,
WinBits
nStyle
);
SvxFontPrevWindow
(
vcl
::
Window
*
pParent
,
WinBits
nStyle
);
virtual
~
SvxFontPrevWindow
()
override
;
virtual
~
SvxFontPrevWindow
()
override
;
virtual
void
dispose
()
override
;
virtual
void
dispose
()
override
;
...
...
include/vcl/window.hxx
Dosyayı görüntüle @
c1448b42
...
@@ -790,7 +790,6 @@ public:
...
@@ -790,7 +790,6 @@ public:
// Single argument ctors shall be explicit.
// Single argument ctors shall be explicit.
explicit
Window
(
vcl
::
Window
*
pParent
,
WinBits
nStyle
=
0
);
explicit
Window
(
vcl
::
Window
*
pParent
,
WinBits
nStyle
=
0
);
Window
(
vcl
::
Window
*
pParent
,
const
ResId
&
rResId
);
virtual
~
Window
()
override
;
virtual
~
Window
()
override
;
::
OutputDevice
const
*
GetOutDev
()
const
;
::
OutputDevice
const
*
GetOutDev
()
const
;
...
...
svx/source/dialog/fntctrl.cxx
Dosyayı görüntüle @
c1448b42
...
@@ -503,14 +503,6 @@ void SvxFontPrevWindow::Init()
...
@@ -503,14 +503,6 @@ void SvxFontPrevWindow::Init()
SetBorderStyle
(
WindowBorderStyle
::
MONO
);
SetBorderStyle
(
WindowBorderStyle
::
MONO
);
}
}
SvxFontPrevWindow
::
SvxFontPrevWindow
(
vcl
::
Window
*
pParent
,
const
ResId
&
rId
)
:
Window
(
pParent
,
rId
)
,
mbResetForeground
(
true
)
,
mbResetBackground
(
true
)
{
Init
();
}
SvxFontPrevWindow
::
SvxFontPrevWindow
(
vcl
::
Window
*
pParent
,
WinBits
nStyle
)
SvxFontPrevWindow
::
SvxFontPrevWindow
(
vcl
::
Window
*
pParent
,
WinBits
nStyle
)
:
Window
(
pParent
,
nStyle
)
:
Window
(
pParent
,
nStyle
)
,
mbResetForeground
(
true
)
,
mbResetForeground
(
true
)
...
...
vcl/source/window/window.cxx
Dosyayı görüntüle @
c1448b42
...
@@ -98,18 +98,6 @@ Window::Window( vcl::Window* pParent, WinBits nStyle ) :
...
@@ -98,18 +98,6 @@ Window::Window( vcl::Window* pParent, WinBits nStyle ) :
ImplInit
(
pParent
,
nStyle
,
nullptr
);
ImplInit
(
pParent
,
nStyle
,
nullptr
);
}
}
Window
::
Window
(
vcl
::
Window
*
pParent
,
const
ResId
&
rResId
)
:
Window
(
WINDOW_WINDOW
)
{
rResId
.
SetRT
(
RSC_WINDOW
);
WinBits
nStyle
=
ImplInitRes
(
rResId
);
ImplInit
(
pParent
,
nStyle
,
nullptr
);
ImplLoadRes
();
if
(
!
(
nStyle
&
WB_HIDE
)
)
Show
();
}
#if OSL_DEBUG_LEVEL > 0
#if OSL_DEBUG_LEVEL > 0
namespace
namespace
{
{
...
...
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