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
4737ed36
Kaydet (Commit)
4737ed36
authored
Mar 13, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
DateBoxes cannot be loaded from .src anymore
Change-Id: Ic9d3c73cf67e855dc5931e96bc03014998cce9e0
üst
24cfa407
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1 addition
and
28 deletions
+1
-28
rcid.h
include/tools/rcid.h
+1
-1
rscdb.hxx
rsc/inc/rscdb.hxx
+0
-1
rscicpx.cxx
rsc/source/parser/rscicpx.cxx
+0
-17
rscinit.cxx
rsc/source/parser/rscinit.cxx
+0
-8
resmgr.cxx
tools/source/rc/resmgr.cxx
+0
-1
No files found.
include/tools/rcid.h
Dosyayı görüntüle @
4737ed36
...
...
@@ -99,7 +99,7 @@
#define RSC_NUMERICBOX (RSC_NOTYPE + 0x69)
#define RSC_METRICBOX (RSC_NOTYPE + 0x6a)
#define RSC_CURRENCYBOX (RSC_NOTYPE + 0x6b)
#define RSC_DATEBOX (RSC_NOTYPE + 0x6c)
#define RSC_LONGCURRENCYFIELD (RSC_NOTYPE + 0x6e)
#define RSC_LONGCURRENCYBOX (RSC_NOTYPE + 0x6f)
...
...
rsc/inc/rscdb.hxx
Dosyayı görüntüle @
4737ed36
...
...
@@ -227,7 +227,6 @@ class RscTypCont
RscTop
*
InitClassMetricBox
(
RscTop
*
pSuper
);
RscTop
*
InitClassCurrencyBox
(
const
char
*
pClassName
,
sal_uInt32
nRT
,
RscTop
*
pSuper
);
RscTop
*
InitClassDateBox
(
RscTop
*
pSuper
);
RscTop
*
InitClassDockingWindow
(
RscTop
*
pSuper
,
RscEnum
*
pMapUnit
);
...
...
rsc/source/parser/rscicpx.cxx
Dosyayı görüntüle @
4737ed36
...
...
@@ -1599,23 +1599,6 @@ RscTop * RscTypCont::InitClassCurrencyBox
return
pClassCurrencyBox
;
}
RscTop
*
RscTypCont
::
InitClassDateBox
(
RscTop
*
pSuper
)
{
Atom
nId
;
RscTop
*
pClassDateBox
;
// Klasse anlegen
nId
=
pHS
->
getID
(
"DateBox"
);
pClassDateBox
=
new
RscClass
(
nId
,
RSC_DATEBOX
,
pSuper
);
pClassDateBox
->
SetCallPar
(
*
pWinPar1
,
*
pWinPar2
,
*
pWinParType
);
aNmTb
.
Put
(
nId
,
CLASSNAME
,
pClassDateBox
);
// Variablen anlegen
return
pClassDateBox
;
}
RscTop
*
RscTypCont
::
InitClassDockingWindow
(
RscTop
*
pSuper
,
RscEnum
*
pMapUnit
)
{
...
...
rsc/source/parser/rscinit.cxx
Dosyayı görüntüle @
4737ed36
...
...
@@ -125,7 +125,6 @@ void RscTypCont::Init()
RscTop
*
pClassMetricBox
;
RscTop
*
pClassCurrencyBox
;
RscTop
*
pClassLongCurrencyBox
;
RscTop
*
pClassDateBox
;
RscTop
*
pClassDockingWindow
;
RscTop
*
pClassToolBoxItem
;
RscTop
*
pClassToolBox
;
...
...
@@ -680,13 +679,6 @@ void RscTypCont::Init()
pClassLongCurrencyBox
=
InitClassCurrencyBox
(
"LongCurrencyBox"
,
RSC_LONGCURRENCYBOX
,
pClassTmp
);
pRoot
->
Insert
(
pClassLongCurrencyBox
);
}
{
// Mehrfachvererbung von Hand
RscTop
*
pClassTmp
=
InitClassDateFormatter
(
pClassComboBox
,
pClassDate
);
aBaseLst
.
push_back
(
pClassTmp
);
pClassDateBox
=
InitClassDateBox
(
pClassTmp
);
pRoot
->
Insert
(
pClassDateBox
);
}
pClassDockingWindow
=
InitClassDockingWindow
(
pClassWindow
,
pMapUnit
);
pRoot
->
Insert
(
pClassDockingWindow
);
...
...
tools/source/rc/resmgr.cxx
Dosyayı görüntüle @
4737ed36
...
...
@@ -1500,7 +1500,6 @@ OString ResMgr::GetAutoHelpId()
case
RSC_NUMERICBOX
:
aHID
.
append
(
"NumericBox"
);
break
;
case
RSC_METRICBOX
:
aHID
.
append
(
"MetricBox"
);
break
;
case
RSC_CURRENCYBOX
:
aHID
.
append
(
"CurrencyBox"
);
break
;
case
RSC_DATEBOX
:
aHID
.
append
(
"DateBox"
);
break
;
case
RSC_IMAGEBUTTON
:
aHID
.
append
(
"ImageButton"
);
break
;
case
RSC_MENUBUTTON
:
aHID
.
append
(
"MenuButton"
);
break
;
default
:
...
...
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