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
b0da096c
Kaydet (Commit)
b0da096c
authored
Agu 16, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
RSC_MULTILINEEDIT no longer used
Change-Id: If56233b5226cec9516d5e2f8992e1b0beae733bf
üst
e09e956a
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
2 additions
and
30 deletions
+2
-30
rcid.h
include/tools/rcid.h
+1
-1
rscdb.hxx
rsc/inc/rscdb.hxx
+0
-1
rscicpx.cxx
rsc/source/parser/rscicpx.cxx
+0
-20
rscinit.cxx
rsc/source/parser/rscinit.cxx
+0
-4
resmgr.cxx
tools/source/rc/resmgr.cxx
+0
-1
edit.cxx
vcl/source/control/edit.cxx
+1
-3
No files found.
include/tools/rcid.h
Dosyayı görüntüle @
b0da096c
...
...
@@ -74,7 +74,7 @@
#define RSC_CHECKBOX (RSC_NOTYPE + 0x50)
#define RSC_TRISTATEBOX (RSC_NOTYPE + 0x51)
#define RSC_EDIT (RSC_NOTYPE + 0x52)
#define RSC_MULTILINEEDIT (RSC_NOTYPE + 0x53)
#define RSC_COMBOBOX (RSC_NOTYPE + 0x54)
#define RSC_LISTBOX (RSC_NOTYPE + 0x55)
...
...
rsc/inc/rscdb.hxx
Dosyayı görüntüle @
b0da096c
...
...
@@ -180,7 +180,6 @@ class RscTypCont
RscTop
*
InitClassImageButton
(
RscTop
*
pSuper
,
RscTop
*
pClassImage
,
RscEnum
*
pTriState
);
RscTop
*
InitClassEdit
(
RscTop
*
pSuper
);
RscTop
*
InitClassMultiLineEdit
(
RscTop
*
pSuper
);
RscTop
*
InitClassScrollBar
(
RscTop
*
pSuper
);
RscTop
*
InitClassListBox
(
RscTop
*
pSuper
,
RscArray
*
pStrLst
);
RscTop
*
InitClassComboBox
(
RscTop
*
pSuper
,
RscArray
*
pStrLst
);
...
...
rsc/source/parser/rscicpx.cxx
Dosyayı görüntüle @
b0da096c
...
...
@@ -542,26 +542,6 @@ RscTop * RscTypCont::InitClassEdit( RscTop * pSuper )
return
pClassEdit
;
}
RscTop
*
RscTypCont
::
InitClassMultiLineEdit
(
RscTop
*
pSuper
)
{
Atom
nId
;
RscTop
*
pClassMultiLineEdit
;
// Klasse anlegen
nId
=
pHS
->
getID
(
"MultiLineEdit"
);
pClassMultiLineEdit
=
new
RscClass
(
nId
,
RSC_MULTILINEEDIT
,
pSuper
);
pClassMultiLineEdit
->
SetCallPar
(
*
pWinPar1
,
*
pWinPar2
,
*
pWinParType
);
aNmTb
.
Put
(
nId
,
CLASSNAME
,
pClassMultiLineEdit
);
INS_WINBIT
(
pClassMultiLineEdit
,
HScroll
);
INS_WINBIT
(
pClassMultiLineEdit
,
VScroll
);
INS_WINBIT
(
pClassMultiLineEdit
,
IgnoreTab
);
INS_WINBIT
(
pClassMultiLineEdit
,
AutoVScroll
)
return
pClassMultiLineEdit
;
}
RscTop
*
RscTypCont
::
InitClassListBox
(
RscTop
*
pSuper
,
RscArray
*
pStrLst
)
{
Atom
nId
;
...
...
rsc/source/parser/rscinit.cxx
Dosyayı görüntüle @
b0da096c
...
...
@@ -84,7 +84,6 @@ void RscTypCont::Init()
RscTop
*
pClassImageButton
;
RscTop
*
pClassTriStateBox
;
RscTop
*
pClassEdit
;
RscTop
*
pClassMultiLineEdit
;
RscTop
*
pClassListBox
;
RscTop
*
pClassComboBox
;
RscTop
*
pClassFixedText
;
...
...
@@ -427,9 +426,6 @@ void RscTypCont::Init()
pClassEdit
=
InitClassEdit
(
pClassControl
);
pRoot
->
Insert
(
pClassEdit
);
pClassMultiLineEdit
=
InitClassMultiLineEdit
(
pClassEdit
);
pRoot
->
Insert
(
pClassMultiLineEdit
);
}
{
pClassListBox
=
InitClassListBox
(
pClassControl
,
pLangStringLongTupelList
);
...
...
tools/source/rc/resmgr.cxx
Dosyayı görüntüle @
b0da096c
...
...
@@ -1483,7 +1483,6 @@ OString ResMgr::GetAutoHelpId()
case
RSC_CHECKBOX
:
aHID
.
append
(
"CheckBox"
);
break
;
case
RSC_TRISTATEBOX
:
aHID
.
append
(
"TriStateBox"
);
break
;
case
RSC_EDIT
:
aHID
.
append
(
"Edit"
);
break
;
case
RSC_MULTILINEEDIT
:
aHID
.
append
(
"MultiLineEdit"
);
break
;
case
RSC_LISTBOX
:
aHID
.
append
(
"ListBox"
);
break
;
case
RSC_COMBOBOX
:
aHID
.
append
(
"ComboBox"
);
break
;
case
RSC_PUSHBUTTON
:
aHID
.
append
(
"PushButton"
);
break
;
...
...
vcl/source/control/edit.cxx
Dosyayı görüntüle @
b0da096c
...
...
@@ -177,9 +177,7 @@ Edit::Edit( Window* pParent, const ResId& rResId ) :
ImplInit
(
pParent
,
nStyle
);
ImplLoadRes
(
rResId
);
// Derived MultiLineEdit takes care to call Show only after MultiLineEdit
// ctor has already started:
if
(
!
(
nStyle
&
WB_HIDE
)
&&
rResId
.
GetRT
()
!=
RSC_MULTILINEEDIT
)
if
(
!
(
nStyle
&
WB_HIDE
)
)
Show
();
}
...
...
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