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
ced1ffc2
Kaydet (Commit)
ced1ffc2
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: I72ba7c59cfcf0ec4e5e31067a260e82f8f604567
üst
f6ec07a3
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
18 additions
and
18 deletions
+18
-18
MSWorksCalcImportFilter.cxx
writerperfect/source/calc/MSWorksCalcImportFilter.cxx
+1
-1
MWAWCalcImportFilter.cxx
writerperfect/source/calc/MWAWCalcImportFilter.cxx
+1
-1
CDRImportFilter.cxx
writerperfect/source/draw/CDRImportFilter.cxx
+1
-1
CMXImportFilter.cxx
writerperfect/source/draw/CMXImportFilter.cxx
+1
-1
FreehandImportFilter.cxx
writerperfect/source/draw/FreehandImportFilter.cxx
+1
-1
MSPUBImportFilter.cxx
writerperfect/source/draw/MSPUBImportFilter.cxx
+1
-1
MWAWDrawImportFilter.cxx
writerperfect/source/draw/MWAWDrawImportFilter.cxx
+1
-1
PageMakerImportFilter.cxx
writerperfect/source/draw/PageMakerImportFilter.cxx
+1
-1
VisioImportFilter.cxx
writerperfect/source/draw/VisioImportFilter.cxx
+1
-1
WPGImportFilter.cxx
writerperfect/source/draw/WPGImportFilter.cxx
+1
-1
KeynoteImportFilter.cxx
writerperfect/source/impress/KeynoteImportFilter.cxx
+1
-1
MWAWPresentationImportFilter.cxx
...erperfect/source/impress/MWAWPresentationImportFilter.cxx
+1
-1
AbiWordImportFilter.cxx
writerperfect/source/writer/AbiWordImportFilter.cxx
+1
-1
EBookImportFilter.cxx
writerperfect/source/writer/EBookImportFilter.cxx
+1
-1
MSWorksImportFilter.cxx
writerperfect/source/writer/MSWorksImportFilter.cxx
+1
-1
MWAWImportFilter.cxx
writerperfect/source/writer/MWAWImportFilter.cxx
+1
-1
WordPerfectImportFilter.cxx
writerperfect/source/writer/WordPerfectImportFilter.cxx
+2
-2
No files found.
writerperfect/source/calc/MSWorksCalcImportFilter.cxx
Dosyayı görüntüle @
ced1ffc2
...
...
@@ -130,7 +130,7 @@ throw (RuntimeException)
Reference
<
XInterface
>
SAL_CALL
MSWorksCalcImportFilter_createInstance
(
const
Reference
<
XComponentContext
>
&
rContext
)
throw
(
Exception
)
{
return
(
cppu
::
OWeakObject
*
)
new
MSWorksCalcImportFilter
(
rContext
);
return
static_cast
<
cppu
::
OWeakObject
*>
(
new
MSWorksCalcImportFilter
(
rContext
)
);
}
// XServiceInfo
...
...
writerperfect/source/calc/MWAWCalcImportFilter.cxx
Dosyayı görüntüle @
ced1ffc2
...
...
@@ -168,7 +168,7 @@ throw (RuntimeException)
Reference
<
XInterface
>
SAL_CALL
MWAWCalcImportFilter_createInstance
(
const
Reference
<
XComponentContext
>
&
rContext
)
throw
(
Exception
)
{
return
(
cppu
::
OWeakObject
*
)
new
MWAWCalcImportFilter
(
rContext
);
return
static_cast
<
cppu
::
OWeakObject
*>
(
new
MWAWCalcImportFilter
(
rContext
)
);
}
// XServiceInfo
...
...
writerperfect/source/draw/CDRImportFilter.cxx
Dosyayı görüntüle @
ced1ffc2
...
...
@@ -62,7 +62,7 @@ throw (RuntimeException)
Reference
<
XInterface
>
SAL_CALL
CDRImportFilter_createInstance
(
const
Reference
<
XComponentContext
>
&
rContext
)
throw
(
Exception
)
{
return
(
cppu
::
OWeakObject
*
)
new
CDRImportFilter
(
rContext
);
return
static_cast
<
cppu
::
OWeakObject
*>
(
new
CDRImportFilter
(
rContext
)
);
}
// XServiceInfo
...
...
writerperfect/source/draw/CMXImportFilter.cxx
Dosyayı görüntüle @
ced1ffc2
...
...
@@ -62,7 +62,7 @@ throw (RuntimeException)
Reference
<
XInterface
>
SAL_CALL
CMXImportFilter_createInstance
(
const
Reference
<
XComponentContext
>
&
rContext
)
throw
(
Exception
)
{
return
(
cppu
::
OWeakObject
*
)
new
CMXImportFilter
(
rContext
);
return
static_cast
<
cppu
::
OWeakObject
*>
(
new
CMXImportFilter
(
rContext
)
);
}
// XServiceInfo
...
...
writerperfect/source/draw/FreehandImportFilter.cxx
Dosyayı görüntüle @
ced1ffc2
...
...
@@ -58,7 +58,7 @@ throw (RuntimeException)
Reference
<
XInterface
>
SAL_CALL
FreehandImportFilter_createInstance
(
const
Reference
<
XComponentContext
>
&
rContext
)
throw
(
Exception
)
{
return
(
cppu
::
OWeakObject
*
)
new
FreehandImportFilter
(
rContext
);
return
static_cast
<
cppu
::
OWeakObject
*>
(
new
FreehandImportFilter
(
rContext
)
);
}
// XServiceInfo
...
...
writerperfect/source/draw/MSPUBImportFilter.cxx
Dosyayı görüntüle @
ced1ffc2
...
...
@@ -60,7 +60,7 @@ throw (RuntimeException)
Reference
<
XInterface
>
SAL_CALL
MSPUBImportFilter_createInstance
(
const
Reference
<
XComponentContext
>
&
rContext
)
throw
(
Exception
)
{
return
(
cppu
::
OWeakObject
*
)
new
MSPUBImportFilter
(
rContext
);
return
static_cast
<
cppu
::
OWeakObject
*>
(
new
MSPUBImportFilter
(
rContext
)
);
}
// XServiceInfo
...
...
writerperfect/source/draw/MWAWDrawImportFilter.cxx
Dosyayı görüntüle @
ced1ffc2
...
...
@@ -176,7 +176,7 @@ throw (RuntimeException)
Reference
<
XInterface
>
SAL_CALL
MWAWDrawImportFilter_createInstance
(
const
Reference
<
XComponentContext
>
&
rContext
)
throw
(
Exception
)
{
return
(
cppu
::
OWeakObject
*
)
new
MWAWDrawImportFilter
(
rContext
);
return
static_cast
<
cppu
::
OWeakObject
*>
(
new
MWAWDrawImportFilter
(
rContext
)
);
}
// XServiceInfo
...
...
writerperfect/source/draw/PageMakerImportFilter.cxx
Dosyayı görüntüle @
ced1ffc2
...
...
@@ -60,7 +60,7 @@ throw (RuntimeException)
Reference
<
XInterface
>
SAL_CALL
PageMakerImportFilter_createInstance
(
const
Reference
<
XComponentContext
>
&
rContext
)
throw
(
Exception
)
{
return
(
cppu
::
OWeakObject
*
)
new
PageMakerImportFilter
(
rContext
);
return
static_cast
<
cppu
::
OWeakObject
*>
(
new
PageMakerImportFilter
(
rContext
)
);
}
// XServiceInfo
...
...
writerperfect/source/draw/VisioImportFilter.cxx
Dosyayı görüntüle @
ced1ffc2
...
...
@@ -58,7 +58,7 @@ throw (RuntimeException)
Reference
<
XInterface
>
SAL_CALL
VisioImportFilter_createInstance
(
const
Reference
<
XComponentContext
>
&
rContext
)
throw
(
Exception
)
{
return
(
cppu
::
OWeakObject
*
)
new
VisioImportFilter
(
rContext
);
return
static_cast
<
cppu
::
OWeakObject
*>
(
new
VisioImportFilter
(
rContext
)
);
}
// XServiceInfo
...
...
writerperfect/source/draw/WPGImportFilter.cxx
Dosyayı görüntüle @
ced1ffc2
...
...
@@ -65,7 +65,7 @@ throw (RuntimeException)
Reference
<
XInterface
>
SAL_CALL
WPGImportFilter_createInstance
(
const
Reference
<
XComponentContext
>
&
rContext
)
throw
(
Exception
)
{
return
(
cppu
::
OWeakObject
*
)
new
WPGImportFilter
(
rContext
);
return
static_cast
<
cppu
::
OWeakObject
*>
(
new
WPGImportFilter
(
rContext
)
);
}
// XServiceInfo
...
...
writerperfect/source/impress/KeynoteImportFilter.cxx
Dosyayı görüntüle @
ced1ffc2
...
...
@@ -257,7 +257,7 @@ throw (RuntimeException)
Reference
<
XInterface
>
SAL_CALL
KeynoteImportFilter_createInstance
(
const
Reference
<
XComponentContext
>
&
rContext
)
throw
(
Exception
)
{
return
(
cppu
::
OWeakObject
*
)
new
KeynoteImportFilter
(
rContext
);
return
static_cast
<
cppu
::
OWeakObject
*>
(
new
KeynoteImportFilter
(
rContext
)
);
}
// XServiceInfo
...
...
writerperfect/source/impress/MWAWPresentationImportFilter.cxx
Dosyayı görüntüle @
ced1ffc2
...
...
@@ -158,7 +158,7 @@ throw (RuntimeException)
Reference
<
XInterface
>
SAL_CALL
MWAWPresentationImportFilter_createInstance
(
const
Reference
<
XComponentContext
>
&
rContext
)
throw
(
Exception
)
{
return
(
cppu
::
OWeakObject
*
)
new
MWAWPresentationImportFilter
(
rContext
);
return
static_cast
<
cppu
::
OWeakObject
*>
(
new
MWAWPresentationImportFilter
(
rContext
)
);
}
// XServiceInfo
...
...
writerperfect/source/writer/AbiWordImportFilter.cxx
Dosyayı görüntüle @
ced1ffc2
...
...
@@ -61,7 +61,7 @@ throw (RuntimeException)
Reference
<
XInterface
>
SAL_CALL
AbiWordImportFilter_createInstance
(
const
Reference
<
XComponentContext
>
&
rContext
)
throw
(
Exception
)
{
return
(
cppu
::
OWeakObject
*
)
new
AbiWordImportFilter
(
rContext
);
return
static_cast
<
cppu
::
OWeakObject
*>
(
new
AbiWordImportFilter
(
rContext
)
);
}
// XServiceInfo
...
...
writerperfect/source/writer/EBookImportFilter.cxx
Dosyayı görüntüle @
ced1ffc2
...
...
@@ -116,7 +116,7 @@ throw (RuntimeException)
Reference
<
XInterface
>
SAL_CALL
EBookImportFilter_createInstance
(
const
Reference
<
XComponentContext
>
&
rContext
)
throw
(
Exception
)
{
return
(
cppu
::
OWeakObject
*
)
new
EBookImportFilter
(
rContext
);
return
static_cast
<
cppu
::
OWeakObject
*>
(
new
EBookImportFilter
(
rContext
)
);
}
// XServiceInfo
...
...
writerperfect/source/writer/MSWorksImportFilter.cxx
Dosyayı görüntüle @
ced1ffc2
...
...
@@ -106,7 +106,7 @@ throw (RuntimeException)
Reference
<
XInterface
>
SAL_CALL
MSWorksImportFilter_createInstance
(
const
Reference
<
XComponentContext
>
&
rContext
)
throw
(
Exception
)
{
return
(
cppu
::
OWeakObject
*
)
new
MSWorksImportFilter
(
rContext
);
return
static_cast
<
cppu
::
OWeakObject
*>
(
new
MSWorksImportFilter
(
rContext
)
);
}
// XServiceInfo
...
...
writerperfect/source/writer/MWAWImportFilter.cxx
Dosyayı görüntüle @
ced1ffc2
...
...
@@ -205,7 +205,7 @@ throw (RuntimeException)
Reference
<
XInterface
>
SAL_CALL
MWAWImportFilter_createInstance
(
const
Reference
<
XComponentContext
>
&
rContext
)
throw
(
Exception
)
{
return
(
cppu
::
OWeakObject
*
)
new
MWAWImportFilter
(
rContext
);
return
static_cast
<
cppu
::
OWeakObject
*>
(
new
MWAWImportFilter
(
rContext
)
);
}
// XServiceInfo
...
...
writerperfect/source/writer/WordPerfectImportFilter.cxx
Dosyayı görüntüle @
ced1ffc2
...
...
@@ -256,7 +256,7 @@ throw (RuntimeException)
Reference
<
XInterface
>
SAL_CALL
WordPerfectImportFilter_createInstance
(
const
Reference
<
XComponentContext
>
&
rContext
)
throw
(
Exception
)
{
return
(
cppu
::
OWeakObject
*
)
new
WordPerfectImportFilter
(
rContext
);
return
static_cast
<
cppu
::
OWeakObject
*>
(
new
WordPerfectImportFilter
(
rContext
)
);
}
// XServiceInfo
...
...
@@ -387,7 +387,7 @@ throw (RuntimeException)
Reference
<
XInterface
>
SAL_CALL
WordPerfectImportFilterDialog_createInstance
(
const
Reference
<
XComponentContext
>
&
rContext
)
throw
(
Exception
)
{
return
(
cppu
::
OWeakObject
*
)
new
WordPerfectImportFilterDialog
(
rContext
);
return
static_cast
<
cppu
::
OWeakObject
*>
(
new
WordPerfectImportFilterDialog
(
rContext
)
);
}
/* 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