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
e007d3f3
Kaydet (Commit)
e007d3f3
authored
Kas 30, 2011
tarafından
August Sodora
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
String->OUString
üst
e4b924df
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
15 deletions
+13
-15
bastypes.cxx
basctl/source/basicide/bastypes.cxx
+2
-2
sbxitem.hxx
basctl/source/inc/sbxitem.hxx
+11
-13
No files found.
basctl/source/basicide/bastypes.cxx
Dosyayı görüntüle @
e007d3f3
...
...
@@ -886,7 +886,7 @@ LibInfoItem* LibInfos::GetInfo( const LibInfoKey& rKey )
return
pItem
;
}
SbxItem
::
SbxItem
(
sal_uInt16
nWhich_
,
const
ScriptDocument
&
rDocument
,
const
String
&
aLibName
,
const
String
&
aName
,
sal_uInt16
nType
)
SbxItem
::
SbxItem
(
sal_uInt16
nWhich_
,
const
ScriptDocument
&
rDocument
,
const
::
rtl
::
OUString
&
aLibName
,
const
::
rtl
::
OU
String
&
aName
,
sal_uInt16
nType
)
:
SfxPoolItem
(
nWhich_
)
,
m_aDocument
(
rDocument
)
,
m_aLibName
(
aLibName
)
...
...
@@ -895,7 +895,7 @@ SbxItem::SbxItem(sal_uInt16 nWhich_, const ScriptDocument& rDocument, const Stri
{
}
SbxItem
::
SbxItem
(
sal_uInt16
nWhich_
,
const
ScriptDocument
&
rDocument
,
const
String
&
aLibName
,
const
String
&
aName
,
const
String
&
aMethodName
,
sal_uInt16
nType
)
SbxItem
::
SbxItem
(
sal_uInt16
nWhich_
,
const
ScriptDocument
&
rDocument
,
const
::
rtl
::
OUString
&
aLibName
,
const
::
rtl
::
OUString
&
aName
,
const
::
rtl
::
OU
String
&
aMethodName
,
sal_uInt16
nType
)
:
SfxPoolItem
(
nWhich_
)
,
m_aDocument
(
rDocument
)
,
m_aLibName
(
aLibName
)
...
...
basctl/source/inc/sbxitem.hxx
Dosyayı görüntüle @
e007d3f3
...
...
@@ -38,19 +38,18 @@ const sal_uInt16 BASICIDE_TYPE_MODULE = 3;
const
sal_uInt16
BASICIDE_TYPE_DIALOG
=
4
;
const
sal_uInt16
BASICIDE_TYPE_METHOD
=
5
;
class
SbxItem
:
public
SfxPoolItem
{
ScriptDocument
m_aDocument
;
String
m_aLibName
;
String
m_aName
;
String
m_aMethodName
;
::
rtl
::
OUString
m_aLibName
;
::
rtl
::
OUString
m_aName
;
::
rtl
::
OUString
m_aMethodName
;
sal_uInt16
m_nType
;
public
:
TYPEINFO
();
SbxItem
(
sal_uInt16
nWhich
,
const
ScriptDocument
&
rDocument
,
const
String
&
aLibName
,
const
String
&
aName
,
sal_uInt16
nType
);
SbxItem
(
sal_uInt16
nWhich
,
const
ScriptDocument
&
rDocument
,
const
String
&
aLibName
,
const
String
&
aName
,
const
String
&
aMethodName
,
sal_uInt16
nType
);
SbxItem
(
sal_uInt16
nWhich
,
const
ScriptDocument
&
rDocument
,
const
::
rtl
::
OUString
&
aLibName
,
const
::
rtl
::
OU
String
&
aName
,
sal_uInt16
nType
);
SbxItem
(
sal_uInt16
nWhich
,
const
ScriptDocument
&
rDocument
,
const
::
rtl
::
OUString
&
aLibName
,
const
::
rtl
::
OUString
&
aName
,
const
::
rtl
::
OU
String
&
aMethodName
,
sal_uInt16
nType
);
SbxItem
(
const
SbxItem
&
);
virtual
SfxPoolItem
*
Clone
(
SfxItemPool
*
pPool
=
0
)
const
;
...
...
@@ -60,20 +59,19 @@ public:
GetDocument
()
const
{
return
m_aDocument
;
}
void
SetDocument
(
const
ScriptDocument
&
rDocument
)
{
m_aDocument
=
rDocument
;
}
const
String
&
GetLibName
()
const
{
return
m_aLibName
;
}
void
SetLibName
(
const
String
&
aLibName
)
{
m_aLibName
=
aLibName
;
}
const
::
rtl
::
OUString
&
GetLibName
()
const
{
return
m_aLibName
;
}
void
SetLibName
(
const
::
rtl
::
OU
String
&
aLibName
)
{
m_aLibName
=
aLibName
;
}
const
String
&
GetName
()
const
{
return
m_aName
;
}
void
SetName
(
const
String
&
aName
)
{
m_aName
=
aName
;
}
const
::
rtl
::
OUString
&
GetName
()
const
{
return
m_aName
;
}
void
SetName
(
const
::
rtl
::
OU
String
&
aName
)
{
m_aName
=
aName
;
}
const
String
&
GetMethodName
()
const
{
return
m_aMethodName
;
}
void
SetMethodName
(
const
String
&
aMethodName
)
{
m_aMethodName
=
aMethodName
;
}
const
::
rtl
::
OUString
&
GetMethodName
()
const
{
return
m_aMethodName
;
}
void
SetMethodName
(
const
::
rtl
::
OU
String
&
aMethodName
)
{
m_aMethodName
=
aMethodName
;
}
sal_uInt16
GetType
()
const
{
return
m_nType
;
}
void
SetType
(
sal_uInt16
nType
)
{
m_nType
=
nType
;
}
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
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