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
7a4d7b2f
Kaydet (Commit)
7a4d7b2f
authored
Şub 06, 2012
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
More on string/bool conversion.
üst
6a7250d7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
callform.hxx
sc/inc/callform.hxx
+12
-12
callform.cxx
sc/source/core/tool/callform.cxx
+0
-0
No files found.
sc/inc/callform.hxx
Dosyayı görüntüle @
7a4d7b2f
...
...
@@ -61,18 +61,18 @@ class FuncData : public ScDataObject
{
friend
class
FuncCollection
;
const
ModuleData
*
pModuleData
;
String
aInternalName
;
String
aFuncName
;
rtl
::
OUString
aInternalName
;
rtl
::
OUString
aFuncName
;
sal_uInt16
nNumber
;
sal_uInt16
nParamCount
;
ParamType
eAsyncType
;
ParamType
eParamType
[
MAXFUNCPARAM
];
private
:
FuncData
(
const
String
&
rIName
);
FuncData
(
const
rtl
::
OU
String
&
rIName
);
public
:
FuncData
(
const
ModuleData
*
pModule
,
const
String
&
rIName
,
const
String
&
rFName
,
const
rtl
::
OUString
&
rIName
,
const
rtl
::
OUString
&
rFName
,
sal_uInt16
nNo
,
sal_uInt16
nCount
,
const
ParamType
*
peType
,
...
...
@@ -80,15 +80,15 @@ public:
FuncData
(
const
FuncData
&
rData
);
virtual
ScDataObject
*
Clone
()
const
{
return
new
FuncData
(
*
this
);
}
const
String
&
GetModuleName
()
const
;
const
String
&
GetInternalName
()
const
{
return
aInternalName
;
}
const
String
&
GetFuncName
()
const
{
return
aFuncName
;
}
const
rtl
::
OUString
&
GetModuleName
()
const
;
const
rtl
::
OUString
&
GetInternalName
()
const
{
return
aInternalName
;
}
const
rtl
::
OUString
&
GetFuncName
()
const
{
return
aFuncName
;
}
sal_uInt16
GetParamCount
()
const
{
return
nParamCount
;
}
ParamType
GetParamType
(
sal_uInt16
nIndex
)
const
{
return
eParamType
[
nIndex
];
}
ParamType
GetReturnType
()
const
{
return
eParamType
[
0
];
}
ParamType
GetAsyncType
()
const
{
return
eAsyncType
;
}
sal_B
ool
Call
(
void
**
ppParam
);
sal_B
ool
Unadvice
(
double
nHandle
);
b
ool
Call
(
void
**
ppParam
);
b
ool
Unadvice
(
double
nHandle
);
// name and description of parameter nParam.
// nParam==0 => Desc := function description,
...
...
@@ -107,11 +107,11 @@ public:
virtual
ScDataObject
*
Clone
()
const
{
return
new
FuncCollection
(
*
this
);
}
FuncData
*
operator
[](
const
sal_uInt16
nIndex
)
const
{
return
(
FuncData
*
)
At
(
nIndex
);}
virtual
short
Compare
(
ScDataObject
*
pKey1
,
ScDataObject
*
pKey2
)
const
;
sal_Bool
SearchFunc
(
const
String
&
rName
,
sal_uInt16
&
rIndex
)
const
;
bool
SearchFunc
(
const
rtl
::
OU
String
&
rName
,
sal_uInt16
&
rIndex
)
const
;
};
sal_B
ool
InitExternalFunc
(
const
rtl
::
OUString
&
rModuleName
);
b
ool
InitExternalFunc
(
const
rtl
::
OUString
&
rModuleName
);
void
ExitExternalFunc
();
#endif
...
...
sc/source/core/tool/callform.cxx
Dosyayı görüntüle @
7a4d7b2f
This diff is collapsed.
Click to expand it.
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