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
85c6b88e
Kaydet (Commit)
85c6b88e
authored
Haz 26, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
loplugin:stringconstant: handle OUString+=OUString(literal)
Change-Id: I0d1d7f598a0c61d36d72f9d51cccdcd1071c30b6
üst
cf029c12
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
11 deletions
+9
-11
drawdoc3.cxx
sd/source/core/drawdoc3.cxx
+2
-1
CustomAnimationPane.cxx
sd/source/ui/animations/CustomAnimationPane.cxx
+1
-2
annotationtag.cxx
sd/source/ui/annotations/annotationtag.cxx
+3
-3
tpaction.cxx
sd/source/ui/dlg/tpaction.cxx
+1
-2
fuprobjs.cxx
sd/source/ui/func/fuprobjs.cxx
+2
-3
No files found.
sd/source/core/drawdoc3.cxx
Dosyayı görüntüle @
85c6b88e
...
@@ -112,7 +112,8 @@ void InsertBookmarkAsPage_FindDuplicateLayouts::operator()( SdDrawDocument& rDoc
...
@@ -112,7 +112,8 @@ void InsertBookmarkAsPage_FindDuplicateLayouts::operator()( SdDrawDocument& rDoc
// about this
// about this
if
(
bRenameDuplicates
&&
aTest
!=
OUString
(
SdResId
(
STR_LAYOUT_DEFAULT_NAME
)
)
&&
pTestPage
->
getHash
()
!=
pBMMPage
->
getHash
()
)
if
(
bRenameDuplicates
&&
aTest
!=
OUString
(
SdResId
(
STR_LAYOUT_DEFAULT_NAME
)
)
&&
pTestPage
->
getHash
()
!=
pBMMPage
->
getHash
()
)
{
{
pBookmarkDoc
->
RenameLayoutTemplate
(
pBMMPage
->
GetLayoutName
(),
OUString
(
pBMMPage
->
GetName
())
+=
OUString
(
"_"
)
);
pBookmarkDoc
->
RenameLayoutTemplate
(
pBMMPage
->
GetLayoutName
(),
pBMMPage
->
GetName
()
+
"_"
);
aLayout
=
pBMMPage
->
GetName
();
aLayout
=
pBMMPage
->
GetName
();
break
;
break
;
...
...
sd/source/ui/animations/CustomAnimationPane.cxx
Dosyayı görüntüle @
85c6b88e
...
@@ -520,8 +520,7 @@ void CustomAnimationPane::updateControls()
...
@@ -520,8 +520,7 @@ void CustomAnimationPane::updateControls()
if
(
!
aUIName
.
isEmpty
()
)
if
(
!
aUIName
.
isEmpty
()
)
{
{
aTemp
+=
OUString
(
(
sal_Unicode
)
' '
);
aTemp
+=
" "
+
aUIName
;
aTemp
+=
aUIName
;
mpFTEffect
->
SetText
(
aTemp
);
mpFTEffect
->
SetText
(
aTemp
);
}
}
...
...
sd/source/ui/annotations/annotationtag.cxx
Dosyayı görüntüle @
85c6b88e
...
@@ -517,9 +517,9 @@ BitmapEx AnnotationTag::CreateAnnotationBitmap( bool bSelected )
...
@@ -517,9 +517,9 @@ BitmapEx AnnotationTag::CreateAnnotationBitmap( bool bSelected )
{
{
ScopedVclPtrInstance
<
VirtualDevice
>
pVDev
;
ScopedVclPtrInstance
<
VirtualDevice
>
pVDev
;
OUString
sAuthor
(
getInitials
(
mxAnnotation
->
getAuthor
()
)
);
OUString
sAuthor
(
sAuthor
+=
OUString
(
' '
);
getInitials
(
mxAnnotation
->
getAuthor
())
+
" "
sAuthor
+=
OUString
::
number
(
mnIndex
);
+
OUString
::
number
(
mnIndex
)
);
pVDev
->
SetFont
(
mrFont
);
pVDev
->
SetFont
(
mrFont
);
...
...
sd/source/ui/dlg/tpaction.cxx
Dosyayı görüntüle @
85c6b88e
...
@@ -844,8 +844,7 @@ OUString SdTPAction::GetEditText( bool bFullDocDestination )
...
@@ -844,8 +844,7 @@ OUString SdTPAction::GetEditText( bool bFullDocDestination )
OUString
aTmpStr
(
m_pLbTreeDocument
->
GetSelectEntry
()
);
OUString
aTmpStr
(
m_pLbTreeDocument
->
GetSelectEntry
()
);
if
(
!
aTmpStr
.
isEmpty
()
)
if
(
!
aTmpStr
.
isEmpty
()
)
{
{
aStr
+=
OUString
(
DOCUMENT_TOKEN
);
aStr
+=
OUStringLiteral1
<
DOCUMENT_TOKEN
>
()
+
aTmpStr
;
aStr
+=
aTmpStr
;
}
}
}
}
...
...
sd/source/ui/func/fuprobjs.cxx
Dosyayı görüntüle @
85c6b88e
...
@@ -127,9 +127,8 @@ void FuPresentationObjects::DoExecute( SfxRequest& )
...
@@ -127,9 +127,8 @@ void FuPresentationObjects::DoExecute( SfxRequest& )
else
else
{
{
ePO
=
(
PresentationObjects
)
(
PO_OUTLINE_1
+
nDepth
-
1
);
ePO
=
(
PresentationObjects
)
(
PO_OUTLINE_1
+
nDepth
-
1
);
aStyleName
+=
SD_RESSTR
(
STR_LAYOUT_OUTLINE
);
aStyleName
+=
SD_RESSTR
(
STR_LAYOUT_OUTLINE
)
+
" "
aStyleName
+=
OUString
(
' '
)
;
+
OUString
::
number
(
nDepth
);
aStyleName
+=
OUString
::
number
(
nDepth
)
;
}
}
SfxStyleSheetBasePool
*
pStyleSheetPool
=
mpDocSh
->
GetStyleSheetPool
();
SfxStyleSheetBasePool
*
pStyleSheetPool
=
mpDocSh
->
GetStyleSheetPool
();
...
...
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