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
bf8b3211
Kaydet (Commit)
bf8b3211
authored
Kas 10, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:nullptr (automatic rewrite)
Change-Id: Ib928ecb14bbc119b58dbe7d07941c266329e57e3
üst
6dea8621
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
10 deletions
+10
-10
fltdlg.cxx
uui/source/fltdlg.cxx
+3
-3
iahndl-ssl.cxx
uui/source/iahndl-ssl.cxx
+2
-2
iahndl.cxx
uui/source/iahndl.cxx
+1
-1
requeststringresolver.cxx
uui/source/requeststringresolver.cxx
+1
-1
secmacrowarnings.cxx
uui/source/secmacrowarnings.cxx
+1
-1
services.cxx
uui/source/services.cxx
+2
-2
No files found.
uui/source/fltdlg.cxx
Dosyayı görüntüle @
bf8b3211
...
...
@@ -47,7 +47,7 @@ namespace uui
*//*-*************************************************************************************************************/
FilterDialog
::
FilterDialog
(
vcl
::
Window
*
pParentWindow
)
:
ModalDialog
(
pParentWindow
,
"FilterSelectDialog"
,
"uui/ui/filterselect.ui"
)
,
m_pFilterNames
(
NULL
)
,
m_pFilterNames
(
nullptr
)
{
get
(
m_pFtURL
,
"url"
);
get
(
m_pLbFilters
,
"filters"
);
...
...
@@ -102,7 +102,7 @@ void FilterDialog::ChangeFilters( const FilterNameList* pFilterNames )
{
m_pFilterNames
=
pFilterNames
;
m_pLbFilters
->
Clear
();
if
(
m_pFilterNames
!=
NULL
)
if
(
m_pFilterNames
!=
nullptr
)
{
for
(
FilterNameListPtr
pItem
=
m_pFilterNames
->
begin
();
pItem
!=
m_pFilterNames
->
end
()
;
...
...
@@ -135,7 +135,7 @@ bool FilterDialog::AskForFilter( FilterNameListPtr& pSelectedItem )
{
bool
bSelected
=
false
;
if
(
m_pFilterNames
!=
NULL
)
if
(
m_pFilterNames
!=
nullptr
)
{
if
(
ModalDialog
::
Execute
()
==
RET_OK
)
{
...
...
uui/source/iahndl-ssl.cxx
Dosyayı görüntüle @
bf8b3211
...
...
@@ -57,7 +57,7 @@ OUString
getContentPart
(
const
OUString
&
_rRawString
)
{
// search over some parts to find a string
static
char
const
*
aIDs
[]
=
{
"CN="
,
"OU="
,
"O="
,
"E="
,
NULL
};
static
char
const
*
aIDs
[]
=
{
"CN="
,
"OU="
,
"O="
,
"E="
,
nullptr
};
OUString
sPart
;
int
i
=
0
;
while
(
aIDs
[
i
]
)
...
...
@@ -119,7 +119,7 @@ getLocalizedDatTimeStr(
LanguageType
eUILang
=
Application
::
GetSettings
().
GetUILanguageTag
().
getLanguageType
();
SvNumberFormatter
*
pNumberFormatter
=
new
SvNumberFormatter
(
xContext
,
eUILang
);
OUString
aTmpStr
;
Color
*
pColor
=
NULL
;
Color
*
pColor
=
nullptr
;
Date
*
pNullDate
=
pNumberFormatter
->
GetNullDate
();
sal_uInt32
nFormat
=
pNumberFormatter
->
GetStandardFormat
(
css
::
util
::
NumberFormat
::
DATE
,
eUILang
);
...
...
uui/source/iahndl.cxx
Dosyayı görüntüle @
bf8b3211
...
...
@@ -971,7 +971,7 @@ UUIInteractionHelper::getParentProperty()
if
(
xWindow
.
is
()
)
return
VCLUnoHelper
::
GetWindow
(
xWindow
);
return
0
;
return
nullptr
;
}
uno
::
Reference
<
awt
::
XWindow
>
...
...
uui/source/requeststringresolver.cxx
Dosyayı görüntüle @
bf8b3211
...
...
@@ -96,7 +96,7 @@ UUIInteractionRequestStringResolver::createInstance(
}
catch
(
std
::
bad_alloc
const
&
)
{
throw
uno
::
RuntimeException
(
"out of memory"
,
0
);
throw
uno
::
RuntimeException
(
"out of memory"
,
nullptr
);
}
}
...
...
uui/source/secmacrowarnings.cxx
Dosyayı görüntüle @
bf8b3211
...
...
@@ -65,7 +65,7 @@ namespace
MacroWarning
::
MacroWarning
(
vcl
::
Window
*
_pParent
,
bool
_bWithSignatures
,
ResMgr
&
)
:
ModalDialog
(
_pParent
,
"MacroWarnMedium"
,
"uui/ui/macrowarnmedium.ui"
)
,
mpInfos
(
NULL
)
,
mpInfos
(
nullptr
)
,
mbSignedMode
(
true
)
,
mbShowSignatures
(
_bWithSignatures
)
,
mnActSecLevel
(
0
)
...
...
uui/source/services.cxx
Dosyayı görüntüle @
bf8b3211
...
...
@@ -38,9 +38,9 @@ extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL uui_component_getFactory(sal_Cha
void
*
)
{
if
(
!
pImplName
)
return
0
;
return
nullptr
;
void
*
pRet
=
0
;
void
*
pRet
=
nullptr
;
Reference
<
XMultiServiceFactory
>
xSMgr
(
static_cast
<
XMultiServiceFactory
*
>
(
pServiceManager
)
);
...
...
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