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
6802dc06
Kaydet (Commit)
6802dc06
authored
Agu 26, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Dialogs no longer loaded from resource files
Change-Id: I55295009f474dbac15be792049fa5c6c95c1ec07
üst
ca68971f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
22 deletions
+0
-22
rcid.h
include/tools/rcid.h
+0
-1
dialog.hxx
include/vcl/dialog.hxx
+0
-2
rscinit.cxx
rsc/source/parser/rscinit.cxx
+0
-7
dialog.cxx
vcl/source/window/dialog.cxx
+0
-12
No files found.
include/tools/rcid.h
Dosyayı görüntüle @
6802dc06
...
@@ -52,7 +52,6 @@
...
@@ -52,7 +52,6 @@
#define RSC_WORKWIN (RSC_NOTYPE + 0x37)
#define RSC_WORKWIN (RSC_NOTYPE + 0x37)
#define RSC_FLOATINGWINDOW (RSC_NOTYPE + 0x39)
#define RSC_FLOATINGWINDOW (RSC_NOTYPE + 0x39)
#define RSC_DIALOG (RSC_NOTYPE + 0x3a)
#define RSC_CONTROL (RSC_NOTYPE + 0x44)
#define RSC_CONTROL (RSC_NOTYPE + 0x44)
#define RSC_BUTTON (RSC_NOTYPE + 0x45)
#define RSC_BUTTON (RSC_NOTYPE + 0x45)
...
...
include/vcl/dialog.hxx
Dosyayı görüntüle @
6802dc06
...
@@ -70,8 +70,6 @@ private:
...
@@ -70,8 +70,6 @@ private:
protected
:
protected
:
using
Window
::
ImplInit
;
using
Window
::
ImplInit
;
SAL_DLLPRIVATE
void
ImplInit
(
Window
*
pParent
,
WinBits
nStyle
);
SAL_DLLPRIVATE
void
ImplInit
(
Window
*
pParent
,
WinBits
nStyle
);
SAL_DLLPRIVATE
void
ImplDialogRes
(
const
ResId
&
rResId
);
SAL_DLLPRIVATE
WinBits
init
(
Window
*
pParent
,
const
ResId
&
rResId
);
SAL_DLLPRIVATE
void
setPosSizeOnContainee
(
Size
aSize
,
VclContainer
&
rBox
);
SAL_DLLPRIVATE
void
setPosSizeOnContainee
(
Size
aSize
,
VclContainer
&
rBox
);
public
:
public
:
...
...
rsc/source/parser/rscinit.cxx
Dosyayı görüntüle @
6802dc06
...
@@ -69,7 +69,6 @@ void RscTypCont::Init()
...
@@ -69,7 +69,6 @@ void RscTypCont::Init()
RscTop
*
pClassWindow
;
RscTop
*
pClassWindow
;
RscTop
*
pClassSystemWindow
;
RscTop
*
pClassSystemWindow
;
RscTop
*
pClassWorkWindow
;
RscTop
*
pClassWorkWindow
;
RscTop
*
pClassDialog
;
RscTop
*
pClassControl
;
RscTop
*
pClassControl
;
RscTop
*
pClassButton
;
RscTop
*
pClassButton
;
RscTop
*
pClassCheckBox
;
RscTop
*
pClassCheckBox
;
...
@@ -348,12 +347,6 @@ void RscTypCont::Init()
...
@@ -348,12 +347,6 @@ void RscTypCont::Init()
pClassWorkWindow
=
InitClassWorkWindow
(
pClassSystemWindow
);
pClassWorkWindow
=
InitClassWorkWindow
(
pClassSystemWindow
);
pRoot
->
Insert
(
pClassWorkWindow
);
pRoot
->
Insert
(
pClassWorkWindow
);
// Klasse anlegen
pClassDialog
=
new
RscClass
(
pHS
->
getID
(
"Dialog"
),
RSC_DIALOG
,
pClassSystemWindow
);
pClassDialog
->
SetCallPar
(
*
pWinPar1
,
*
pWinPar2
,
*
pWinParType
);
aBaseLst
.
push_back
(
pClassDialog
);
}
}
{
{
pClassControl
=
InitClassControl
(
pClassWindow
);
pClassControl
=
InitClassControl
(
pClassWindow
);
...
...
vcl/source/window/dialog.cxx
Dosyayı görüntüle @
6802dc06
...
@@ -521,23 +521,11 @@ Dialog::Dialog( Window* pParent, WinBits nStyle )
...
@@ -521,23 +521,11 @@ Dialog::Dialog( Window* pParent, WinBits nStyle )
ImplInit
(
pParent
,
nStyle
);
ImplInit
(
pParent
,
nStyle
);
}
}
WinBits
Dialog
::
init
(
Window
*
pParent
,
const
ResId
&
rResId
)
{
WinBits
nStyle
=
ImplInitRes
(
rResId
);
ImplInit
(
pParent
,
nStyle
);
ImplLoadRes
(
rResId
);
return
nStyle
;
}
void
Dialog
::
set_action_area
(
VclButtonBox
*
pActionArea
)
void
Dialog
::
set_action_area
(
VclButtonBox
*
pActionArea
)
{
{
mpActionArea
=
pActionArea
;
mpActionArea
=
pActionArea
;
}
}
void
Dialog
::
set_content_area
(
VclBox
*
pContentArea
)
void
Dialog
::
set_content_area
(
VclBox
*
pContentArea
)
{
{
mpContentArea
=
pContentArea
;
mpContentArea
=
pContentArea
;
...
...
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