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
e4d7ed03
Kaydet (Commit)
e4d7ed03
authored
Tem 07, 2016
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:passstuffbyref also for {css::uno,rtl}::Reference
Change-Id: I1d02b91f908c744dd3f7664cd453a791da7bd675
üst
5f1e7fe6
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 deletions
+7
-7
vbacollectionimpl.hxx
include/vbahelper/vbacollectionimpl.hxx
+1
-1
vbadocumentbase.hxx
include/vbahelper/vbadocumentbase.hxx
+1
-1
vbatextframe.hxx
include/vbahelper/vbatextframe.hxx
+1
-1
vbadocumentbase.cxx
vbahelper/source/vbahelper/vbadocumentbase.cxx
+1
-1
vbapictureformat.cxx
vbahelper/source/vbahelper/vbapictureformat.cxx
+1
-1
vbapictureformat.hxx
vbahelper/source/vbahelper/vbapictureformat.hxx
+1
-1
vbatextframe.cxx
vbahelper/source/vbahelper/vbatextframe.cxx
+1
-1
No files found.
include/vbahelper/vbacollectionimpl.hxx
Dosyayı görüntüle @
e4d7ed03
...
...
@@ -334,7 +334,7 @@ typedef ScVbaCollectionBase< XCollection_InterfacesBASE > CollImplBase;
class
VBAHELPER_DLLPUBLIC
ScVbaCollectionBaseImpl
:
public
CollImplBase
{
public
:
ScVbaCollectionBaseImpl
(
const
css
::
uno
::
Reference
<
ov
::
XHelperInterface
>
xParent
,
const
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>&
xContext
,
const
css
::
uno
::
Reference
<
css
::
container
::
XIndexAccess
>&
xIndexAccess
)
throw
(
css
::
uno
::
RuntimeException
)
:
CollImplBase
(
xParent
,
xContext
,
xIndexAccess
){}
ScVbaCollectionBaseImpl
(
const
css
::
uno
::
Reference
<
ov
::
XHelperInterface
>
&
xParent
,
const
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>&
xContext
,
const
css
::
uno
::
Reference
<
css
::
container
::
XIndexAccess
>&
xIndexAccess
)
throw
(
css
::
uno
::
RuntimeException
)
:
CollImplBase
(
xParent
,
xContext
,
xIndexAccess
){}
};
...
...
include/vbahelper/vbadocumentbase.hxx
Dosyayı görüntüle @
e4d7ed03
...
...
@@ -54,7 +54,7 @@ protected:
const
css
::
uno
::
Reference
<
css
::
frame
::
XModel
>&
getModel
()
{
return
mxModel
;
}
public
:
VbaDocumentBase
(
const
css
::
uno
::
Reference
<
ov
::
XHelperInterface
>&
xParent
,
const
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>&
xContext
,
css
::
uno
::
Reference
<
css
::
frame
::
XModel
>
xModel
);
css
::
uno
::
Reference
<
css
::
frame
::
XModel
>
const
&
xModel
);
VbaDocumentBase
(
css
::
uno
::
Sequence
<
css
::
uno
::
Any
>
const
&
aArgs
,
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>
const
&
xContext
);
virtual
~
VbaDocumentBase
()
{}
...
...
include/vbahelper/vbatextframe.hxx
Dosyayı görüntüle @
e4d7ed03
...
...
@@ -56,7 +56,7 @@ protected:
sal_Int32
getMargin
(
const
OUString
&
sMarginType
);
void
setMargin
(
const
OUString
&
sMarginType
,
float
fMargin
);
public
:
VbaTextFrame
(
const
css
::
uno
::
Reference
<
ov
::
XHelperInterface
>&
xParent
,
const
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>&
xContext
,
css
::
uno
::
Reference
<
css
::
drawing
::
XShape
>
xShape
);
VbaTextFrame
(
const
css
::
uno
::
Reference
<
ov
::
XHelperInterface
>&
xParent
,
const
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>&
xContext
,
css
::
uno
::
Reference
<
css
::
drawing
::
XShape
>
const
&
xShape
);
virtual
~
VbaTextFrame
()
{}
// Attributes
virtual
sal_Bool
SAL_CALL
getAutoSize
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
override
;
...
...
vbahelper/source/vbahelper/vbadocumentbase.cxx
Dosyayı görüntüle @
e4d7ed03
...
...
@@ -43,7 +43,7 @@
using
namespace
::
com
::
sun
::
star
;
using
namespace
::
ooo
::
vba
;
VbaDocumentBase
::
VbaDocumentBase
(
const
uno
::
Reference
<
ov
::
XHelperInterface
>&
xParent
,
const
uno
::
Reference
<
uno
::
XComponentContext
>&
xContext
,
uno
::
Reference
<
frame
::
XModel
>
xModel
)
:
VbaDocumentBase_BASE
(
xParent
,
xContext
),
mxModel
(
xModel
)
VbaDocumentBase
::
VbaDocumentBase
(
const
uno
::
Reference
<
ov
::
XHelperInterface
>&
xParent
,
const
uno
::
Reference
<
uno
::
XComponentContext
>&
xContext
,
uno
::
Reference
<
frame
::
XModel
>
const
&
xModel
)
:
VbaDocumentBase_BASE
(
xParent
,
xContext
),
mxModel
(
xModel
)
{
}
...
...
vbahelper/source/vbahelper/vbapictureformat.cxx
Dosyayı görüntüle @
e4d7ed03
...
...
@@ -23,7 +23,7 @@ using namespace com::sun::star;
ScVbaPictureFormat
::
ScVbaPictureFormat
(
const
css
::
uno
::
Reference
<
ov
::
XHelperInterface
>&
xParent
,
const
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>&
xContext
,
uno
::
Reference
<
drawing
::
XShape
>
xShape
)
uno
::
Reference
<
drawing
::
XShape
>
const
&
xShape
)
throw
(
lang
::
IllegalArgumentException
,
uno
::
RuntimeException
)
:
ScVbaPictureFormat_BASE
(
xParent
,
xContext
),
m_xShape
(
xShape
)
{
...
...
vbahelper/source/vbahelper/vbapictureformat.hxx
Dosyayı görüntüle @
e4d7ed03
...
...
@@ -37,7 +37,7 @@ protected:
private
:
static
void
checkParameterRangeInDouble
(
double
nRange
,
double
nMin
,
double
nMax
)
throw
(
css
::
uno
::
RuntimeException
);
public
:
ScVbaPictureFormat
(
const
css
::
uno
::
Reference
<
ov
::
XHelperInterface
>&
xParent
,
const
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>&
xContext
,
css
::
uno
::
Reference
<
css
::
drawing
::
XShape
>
xShape
)
ScVbaPictureFormat
(
const
css
::
uno
::
Reference
<
ov
::
XHelperInterface
>&
xParent
,
const
css
::
uno
::
Reference
<
css
::
uno
::
XComponentContext
>&
xContext
,
css
::
uno
::
Reference
<
css
::
drawing
::
XShape
>
const
&
xShape
)
throw
(
css
::
lang
::
IllegalArgumentException
,
css
::
uno
::
RuntimeException
);
// Attributes
...
...
vbahelper/source/vbahelper/vbatextframe.cxx
Dosyayı görüntüle @
e4d7ed03
...
...
@@ -25,7 +25,7 @@
using
namespace
::
ooo
::
vba
;
using
namespace
::
com
::
sun
::
star
;
VbaTextFrame
::
VbaTextFrame
(
const
uno
::
Reference
<
XHelperInterface
>&
xParent
,
const
uno
::
Reference
<
uno
::
XComponentContext
>&
xContext
,
uno
::
Reference
<
drawing
::
XShape
>
xShape
)
:
VbaTextFrame_BASE
(
xParent
,
xContext
),
m_xShape
(
xShape
)
VbaTextFrame
::
VbaTextFrame
(
const
uno
::
Reference
<
XHelperInterface
>&
xParent
,
const
uno
::
Reference
<
uno
::
XComponentContext
>&
xContext
,
uno
::
Reference
<
drawing
::
XShape
>
const
&
xShape
)
:
VbaTextFrame_BASE
(
xParent
,
xContext
),
m_xShape
(
xShape
)
{
m_xPropertySet
.
set
(
m_xShape
,
uno
::
UNO_QUERY_THROW
);
}
...
...
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