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
c48e84dd
Kaydet (Commit)
c48e84dd
authored
Ock 18, 2013
tarafından
Pedro Giffuni
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add namespace extension: may reduce some warnings.
üst
8befe68b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
helperdecl.hxx
sc/source/ui/vba/helperdecl.hxx
+1
-1
vbahyperlinks.cxx
sc/source/ui/vba/vbahyperlinks.cxx
+4
-4
vbahyperlinks.hxx
sc/source/ui/vba/vbahyperlinks.hxx
+3
-3
No files found.
sc/source/ui/vba/helperdecl.hxx
Dosyayı görüntüle @
c48e84dd
...
...
@@ -26,7 +26,7 @@
namespace
comphelper
{
namespace
service_decl
{
template
<
typename
ImplT_
,
typename
WithArgsT
=
with_args
<
false
>
>
struct
vba_service_class_
:
public
serviceimpl_base
<
detail
::
OwnServiceImpl
<
ImplT_
>
,
WithArgsT
>
struct
vba_service_class_
:
public
serviceimpl_base
<
vba_
detail
::
OwnServiceImpl
<
ImplT_
>
,
WithArgsT
>
{
typedef
serviceimpl_base
<
detail
::
OwnServiceImpl
<
ImplT_
>
,
WithArgsT
>
baseT
;
/** Default ctor. Implementation class without args, expecting
...
...
sc/source/ui/vba/vbahyperlinks.cxx
Dosyayı görüntüle @
c48e84dd
...
...
@@ -109,7 +109,7 @@ bool EqualAnchorFunctor::operator()( const uno::Reference< excel::XHyperlink >&
// ============================================================================
namespace
detail
{
namespace
vba_
detail
{
class
ScVbaHlinkContainer
:
public
::
cppu
::
WeakImplHelper1
<
container
::
XIndexAccess
>
{
...
...
@@ -201,13 +201,13 @@ ScVbaHlinkContainerMember::~ScVbaHlinkContainerMember()
{
}
}
// namespace detail
}
// namespace
vba_
detail
// ============================================================================
ScVbaHyperlinks
::
ScVbaHyperlinks
(
const
uno
::
Reference
<
XHelperInterface
>&
rxParent
,
const
uno
::
Reference
<
uno
::
XComponentContext
>&
rxContext
)
throw
(
uno
::
RuntimeException
)
:
detail
::
ScVbaHlinkContainerMember
(
new
detail
::
ScVbaHlinkContainer
),
vba_detail
::
ScVbaHlinkContainerMember
(
new
vba_
detail
::
ScVbaHlinkContainer
),
ScVbaHyperlinks_BASE
(
rxParent
,
rxContext
,
uno
::
Reference
<
container
::
XIndexAccess
>
(
mxContainer
.
get
()
)
)
{
}
...
...
@@ -215,7 +215,7 @@ ScVbaHyperlinks::ScVbaHyperlinks( const uno::Reference< XHelperInterface >& rxPa
ScVbaHyperlinks
::
ScVbaHyperlinks
(
const
uno
::
Reference
<
XHelperInterface
>&
rxParent
,
const
uno
::
Reference
<
uno
::
XComponentContext
>&
rxContext
,
const
ScVbaHyperlinksRef
&
rxSheetHlinks
,
const
ScRangeList
&
rScRanges
)
throw
(
uno
::
RuntimeException
)
:
detail
::
ScVbaHlinkContainerMember
(
new
detail
::
ScVbaHlinkContainer
(
rxSheetHlinks
->
mxContainer
,
rScRanges
)
),
vba_detail
::
ScVbaHlinkContainerMember
(
new
vba_
detail
::
ScVbaHlinkContainer
(
rxSheetHlinks
->
mxContainer
,
rScRanges
)
),
ScVbaHyperlinks_BASE
(
rxParent
,
rxContext
,
uno
::
Reference
<
container
::
XIndexAccess
>
(
mxContainer
.
get
()
)
),
mxSheetHlinks
(
rxSheetHlinks
)
{
...
...
sc/source/ui/vba/vbahyperlinks.hxx
Dosyayı görüntüle @
c48e84dd
...
...
@@ -32,7 +32,7 @@ class ScRangeList;
// ============================================================================
namespace
detail
{
namespace
vba_
detail
{
class
ScVbaHlinkContainer
;
typedef
::
rtl
::
Reference
<
ScVbaHlinkContainer
>
ScVbaHlinkContainerRef
;
...
...
@@ -48,7 +48,7 @@ struct ScVbaHlinkContainerMember
~
ScVbaHlinkContainerMember
();
};
}
// namespace detail
}
// namespace
vba_
detail
// ============================================================================
...
...
@@ -103,7 +103,7 @@ typedef CollTestImplHelper< ov::excel::XHyperlinks > ScVbaHyperlinks_BASE;
End With
*/
class
ScVbaHyperlinks
:
private
detail
::
ScVbaHlinkContainerMember
,
public
ScVbaHyperlinks_BASE
class
ScVbaHyperlinks
:
private
vba_
detail
::
ScVbaHlinkContainerMember
,
public
ScVbaHyperlinks_BASE
{
public
:
explicit
ScVbaHyperlinks
(
...
...
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