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
17a5b0f6
Kaydet (Commit)
17a5b0f6
authored
Haz 08, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:cstylecast: deal with remaining pointer casts
Change-Id: Ia702fa56c6ed17b26817e1c0d1720cb26199a6da
üst
b17d8a19
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
dgmimport.cxx
oox/source/ppt/dgmimport.cxx
+1
-1
dgmlayout.cxx
oox/source/ppt/dgmlayout.cxx
+1
-1
pptshapegroupcontext.cxx
oox/source/ppt/pptshapegroupcontext.cxx
+2
-2
ShapeContextHandler.cxx
oox/source/shape/ShapeContextHandler.cxx
+1
-1
ShapeDrawingFragmentHandler.cxx
oox/source/shape/ShapeDrawingFragmentHandler.cxx
+1
-1
No files found.
oox/source/ppt/dgmimport.cxx
Dosyayı görüntüle @
17a5b0f6
...
...
@@ -48,7 +48,7 @@ uno::Sequence< OUString > SAL_CALL QuickDiagrammingImport_getSupportedServiceNam
uno
::
Reference
<
uno
::
XInterface
>
SAL_CALL
QuickDiagrammingImport_createInstance
(
const
Reference
<
XComponentContext
>&
rxContext
)
throw
(
Exception
)
{
return
(
cppu
::
OWeakObject
*
)
new
QuickDiagrammingImport
(
rxContext
);
return
static_cast
<
cppu
::
OWeakObject
*>
(
new
QuickDiagrammingImport
(
rxContext
)
);
}
QuickDiagrammingImport
::
QuickDiagrammingImport
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
uno
::
XComponentContext
>&
rxContext
)
...
...
oox/source/ppt/dgmlayout.cxx
Dosyayı görüntüle @
17a5b0f6
...
...
@@ -55,7 +55,7 @@ uno::Sequence< OUString > SAL_CALL QuickDiagrammingLayout_getSupportedServiceNam
uno
::
Reference
<
uno
::
XInterface
>
SAL_CALL
QuickDiagrammingLayout_createInstance
(
const
Reference
<
XComponentContext
>&
rxContext
)
throw
(
Exception
)
{
return
(
cppu
::
OWeakObject
*
)
new
QuickDiagrammingLayout
(
rxContext
);
return
static_cast
<
cppu
::
OWeakObject
*>
(
new
QuickDiagrammingLayout
(
rxContext
)
);
}
QuickDiagrammingLayout
::
QuickDiagrammingLayout
(
const
Reference
<
XComponentContext
>&
rxContext
)
...
...
oox/source/ppt/pptshapegroupcontext.cxx
Dosyayı görüntüle @
17a5b0f6
...
...
@@ -56,7 +56,7 @@ PPTShapeGroupContext::PPTShapeGroupContext(
:
ShapeGroupContext
(
rParent
,
pMasterShapePtr
,
pGroupShapePtr
)
,
mpSlidePersistPtr
(
rSlidePersistPtr
)
,
meShapeLocation
(
eShapeLocation
)
,
pGraphicShape
(
(
PPTShape
*
)
NULL
)
,
pGraphicShape
(
nullptr
)
{
}
...
...
@@ -136,7 +136,7 @@ void PPTShapeGroupContext::importExtDrawings( )
if
(
pGraphicShape
->
getFontRefColorForNodes
().
isUsed
()
)
applyFontRefColor
(
mpGroupShapePtr
,
pGraphicShape
->
getFontRefColorForNodes
());
}
pGraphicShape
=
oox
::
drawingml
::
ShapePtr
(
(
PPTShape
*
)
NULL
);
pGraphicShape
=
oox
::
drawingml
::
ShapePtr
(
nullptr
);
}
}
...
...
oox/source/shape/ShapeContextHandler.cxx
Dosyayı görüntüle @
17a5b0f6
...
...
@@ -475,7 +475,7 @@ ShapeContextHandler::getShape() throw (uno::RuntimeException, std::exception)
pShapePtr
->
addShape
(
*
mxFilterBase
,
mpThemePtr
.
get
(),
xShapes
,
aMatrix
,
pShapePtr
->
getFillProperties
()
);
xResult
=
pShapePtr
->
getXShape
();
}
mpShape
.
reset
(
(
Shape
*
)
0
);
mpShape
.
reset
();
}
mxDiagramShapeContext
.
clear
();
}
...
...
oox/source/shape/ShapeDrawingFragmentHandler.cxx
Dosyayı görüntüle @
17a5b0f6
...
...
@@ -32,7 +32,7 @@ void SAL_CALL ShapeDrawingFragmentHandler::endDocument() throw (xml::sax::SAXExc
switch
(
Element
)
{
case
DSP_TOKEN
(
spTree
):
return
new
oox
::
drawingml
::
ShapeGroupContext
(
*
this
,
oox
::
drawingml
::
ShapePtr
(
(
oox
::
drawingml
::
Shape
*
)
0
),
mpGroupShapePtr
);
return
new
oox
::
drawingml
::
ShapeGroupContext
(
*
this
,
oox
::
drawingml
::
ShapePtr
(
nullptr
),
mpGroupShapePtr
);
default
:
break
;
}
...
...
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