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
3faf5fd9
Kaydet (Commit)
3faf5fd9
authored
Ara 21, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:unusedfields vbahelper
Change-Id: I5fbe892077697111514767552ef0b4bc88d1a701
üst
8ee52d72
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
7 deletions
+2
-7
vbacontrols.cxx
vbahelper/source/msforms/vbacontrols.cxx
+1
-4
vbacolorformat.cxx
vbahelper/source/vbahelper/vbacolorformat.cxx
+1
-1
vbacolorformat.hxx
vbahelper/source/vbahelper/vbacolorformat.hxx
+0
-2
No files found.
vbahelper/source/msforms/vbacontrols.cxx
Dosyayı görüntüle @
3faf5fd9
...
...
@@ -157,7 +157,6 @@ public:
class
ControlsEnumWrapper
:
public
EnumerationHelper_BASE
{
uno
::
Reference
<
XHelperInterface
>
m_xParent
;
uno
::
Reference
<
uno
::
XComponentContext
>
m_xContext
;
uno
::
Reference
<
container
::
XIndexAccess
>
m_xIndexAccess
;
uno
::
Reference
<
awt
::
XControl
>
m_xDlg
;
...
...
@@ -169,13 +168,11 @@ class ControlsEnumWrapper : public EnumerationHelper_BASE
public
:
ControlsEnumWrapper
(
const
uno
::
Reference
<
XHelperInterface
>&
xParent
,
const
uno
::
Reference
<
uno
::
XComponentContext
>&
xContext
,
const
uno
::
Reference
<
container
::
XIndexAccess
>&
xIndexAccess
,
const
uno
::
Reference
<
awt
::
XControl
>&
xDlg
,
const
uno
::
Reference
<
frame
::
XModel
>&
xModel
,
double
fOffsetX
,
double
fOffsetY
)
:
m_xParent
(
xParent
),
m_xContext
(
xContext
),
m_xIndexAccess
(
xIndexAccess
),
m_xDlg
(
xDlg
),
...
...
@@ -230,7 +227,7 @@ ScVbaControls::ScVbaControls(
uno
::
Reference
<
container
::
XEnumeration
>
ScVbaControls
::
createEnumeration
()
throw
(
uno
::
RuntimeException
)
{
uno
::
Reference
<
container
::
XEnumeration
>
xEnum
(
new
ControlsEnumWrapper
(
mx
Parent
,
mx
Context
,
m_xIndexAccess
,
mxDialog
,
mxModel
,
mfOffsetX
,
mfOffsetY
)
);
uno
::
Reference
<
container
::
XEnumeration
>
xEnum
(
new
ControlsEnumWrapper
(
mxContext
,
m_xIndexAccess
,
mxDialog
,
mxModel
,
mfOffsetX
,
mfOffsetY
)
);
if
(
!
xEnum
.
is
()
)
throw
uno
::
RuntimeException
();
return
xEnum
;
...
...
vbahelper/source/vbahelper/vbacolorformat.cxx
Dosyayı görüntüle @
3faf5fd9
...
...
@@ -40,7 +40,7 @@ MsoColorIndices::getColorIndex( sal_Int32 nIndex )
};
return
COLORINDICES
[
nIndex
];
}
ScVbaColorFormat
::
ScVbaColorFormat
(
const
uno
::
Reference
<
XHelperInterface
>&
xParent
,
const
uno
::
Reference
<
uno
::
XComponentContext
>&
xContext
,
const
uno
::
Reference
<
XHelperInterface
>&
xInternalParent
,
const
uno
::
Reference
<
drawing
::
XShape
>&
xShape
,
const
sal_Int16
nColorFormatType
)
:
ScVbaColorFormat_BASE
(
xParent
,
xContext
),
m_
xInternalParent
(
xInternalParent
),
m_xShape
(
xShape
),
m_
nColorFormatType
(
nColorFormatType
)
ScVbaColorFormat
::
ScVbaColorFormat
(
const
uno
::
Reference
<
XHelperInterface
>&
xParent
,
const
uno
::
Reference
<
uno
::
XComponentContext
>&
xContext
,
const
uno
::
Reference
<
XHelperInterface
>&
xInternalParent
,
const
uno
::
Reference
<
drawing
::
XShape
>&
xShape
,
const
sal_Int16
nColorFormatType
)
:
ScVbaColorFormat_BASE
(
xParent
,
xContext
),
m_nColorFormatType
(
nColorFormatType
)
{
m_xPropertySet
.
set
(
xShape
,
uno
::
UNO_QUERY_THROW
);
m_nFillFormatBackColor
=
0
;
...
...
vbahelper/source/vbahelper/vbacolorformat.hxx
Dosyayı görüntüle @
3faf5fd9
...
...
@@ -93,8 +93,6 @@ struct MsoColorIndices
class
ScVbaColorFormat
:
public
ScVbaColorFormat_BASE
{
private
:
css
::
uno
::
Reference
<
ov
::
XHelperInterface
>
m_xInternalParent
;
css
::
uno
::
Reference
<
css
::
drawing
::
XShape
>
m_xShape
;
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>
m_xPropertySet
;
ScVbaFillFormat
*
m_pFillFormat
;
sal_Int16
m_nColorFormatType
;
...
...
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