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
1cb4a755
Kaydet (Commit)
1cb4a755
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: I897ebb00ce427a00f1d9b0c199d465bb0ac80309
üst
85380260
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
dp_gui_dialog2.cxx
desktop/source/deployment/gui/dp_gui_dialog2.cxx
+2
-2
wordbookmigration.cxx
desktop/source/migration/services/wordbookmigration.cxx
+1
-1
unxsplash.cxx
desktop/source/splash/unxsplash.cxx
+1
-1
No files found.
desktop/source/deployment/gui/dp_gui_dialog2.cxx
Dosyayı görüntüle @
1cb4a755
...
@@ -672,7 +672,7 @@ void DialogHelper::PostUserEvent( const Link<>& rLink, void* pCaller, bool bRefe
...
@@ -672,7 +672,7 @@ void DialogHelper::PostUserEvent( const Link<>& rLink, void* pCaller, bool bRefe
// ExtMgrDialog
// ExtMgrDialog
ExtMgrDialog
::
ExtMgrDialog
(
vcl
::
Window
*
pParent
,
TheExtensionManager
*
pManager
,
Dialog
::
InitFlag
eFlag
)
ExtMgrDialog
::
ExtMgrDialog
(
vcl
::
Window
*
pParent
,
TheExtensionManager
*
pManager
,
Dialog
::
InitFlag
eFlag
)
:
ModelessDialog
(
pParent
,
"ExtensionManagerDialog"
,
"desktop/ui/extensionmanager.ui"
,
eFlag
)
:
ModelessDialog
(
pParent
,
"ExtensionManagerDialog"
,
"desktop/ui/extensionmanager.ui"
,
eFlag
)
,
DialogHelper
(
pManager
->
getContext
(),
(
Dialog
*
)
this
)
,
DialogHelper
(
pManager
->
getContext
(),
static_cast
<
Dialog
*>
(
this
)
)
,
m_sAddPackages
(
getResourceString
(
RID_STR_ADD_PACKAGES
))
,
m_sAddPackages
(
getResourceString
(
RID_STR_ADD_PACKAGES
))
,
m_bHasProgress
(
false
)
,
m_bHasProgress
(
false
)
,
m_bProgressChanged
(
false
)
,
m_bProgressChanged
(
false
)
...
@@ -1183,7 +1183,7 @@ bool ExtMgrDialog::Close()
...
@@ -1183,7 +1183,7 @@ bool ExtMgrDialog::Close()
//UpdateRequiredDialog
//UpdateRequiredDialog
UpdateRequiredDialog
::
UpdateRequiredDialog
(
vcl
::
Window
*
pParent
,
TheExtensionManager
*
pManager
)
UpdateRequiredDialog
::
UpdateRequiredDialog
(
vcl
::
Window
*
pParent
,
TheExtensionManager
*
pManager
)
:
ModalDialog
(
pParent
,
"UpdateRequiredDialog"
,
"desktop/ui/updaterequireddialog.ui"
)
:
ModalDialog
(
pParent
,
"UpdateRequiredDialog"
,
"desktop/ui/updaterequireddialog.ui"
)
,
DialogHelper
(
pManager
->
getContext
(),
(
Dialog
*
)
this
)
,
DialogHelper
(
pManager
->
getContext
(),
static_cast
<
Dialog
*>
(
this
)
)
,
m_sAddPackages
(
getResourceString
(
RID_STR_ADD_PACKAGES
))
,
m_sAddPackages
(
getResourceString
(
RID_STR_ADD_PACKAGES
))
,
m_sCloseText
(
getResourceString
(
RID_STR_CLOSE_BTN
))
,
m_sCloseText
(
getResourceString
(
RID_STR_CLOSE_BTN
))
,
m_bHasProgress
(
false
)
,
m_bHasProgress
(
false
)
...
...
desktop/source/migration/services/wordbookmigration.cxx
Dosyayı görüntüle @
1cb4a755
...
@@ -159,7 +159,7 @@ bool IsUserWordbook( const OUString& rFile )
...
@@ -159,7 +159,7 @@ bool IsUserWordbook( const OUString& rFile )
static
sal_Size
nVerOOo7Len
=
sal
::
static_int_cast
<
sal_Size
>
(
strlen
(
pVerOOo7
));
static
sal_Size
nVerOOo7Len
=
sal
::
static_int_cast
<
sal_Size
>
(
strlen
(
pVerOOo7
));
sal_Char
pMagicHeader
[
MAX_HEADER_LENGTH
];
sal_Char
pMagicHeader
[
MAX_HEADER_LENGTH
];
pMagicHeader
[
nVerOOo7Len
]
=
'\0'
;
pMagicHeader
[
nVerOOo7Len
]
=
'\0'
;
if
((
pStream
->
Read
(
(
void
*
)
pMagicHeader
,
nVerOOo7Len
)
==
nVerOOo7Len
))
if
((
pStream
->
Read
(
static_cast
<
void
*>
(
pMagicHeader
)
,
nVerOOo7Len
)
==
nVerOOo7Len
))
{
{
if
(
!
strcmp
(
pMagicHeader
,
pVerOOo7
)
)
if
(
!
strcmp
(
pMagicHeader
,
pVerOOo7
)
)
bRet
=
true
;
bRet
=
true
;
...
...
desktop/source/splash/unxsplash.cxx
Dosyayı görüntüle @
1cb4a755
...
@@ -148,7 +148,7 @@ uno::Reference< uno::XInterface > UnxSplash_createInstance(const uno::Reference<
...
@@ -148,7 +148,7 @@ uno::Reference< uno::XInterface > UnxSplash_createInstance(const uno::Reference<
{
{
osl
::
MutexGuard
guard
(
m_aMutex
);
osl
::
MutexGuard
guard
(
m_aMutex
);
if
(
!
m_xINSTANCE
.
is
()
)
if
(
!
m_xINSTANCE
.
is
()
)
m_xINSTANCE
=
(
cppu
::
OWeakObject
*
)
new
UnxSplashScreen
(
xCtx
);
m_xINSTANCE
=
static_cast
<
cppu
::
OWeakObject
*>
(
new
UnxSplashScreen
(
xCtx
)
);
}
}
return
m_xINSTANCE
;
return
m_xINSTANCE
;
...
...
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