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
cc10a8a4
Kaydet (Commit)
cc10a8a4
authored
Eki 16, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert remnants of String in SD to OUString
Change-Id: Ia09dab36376e0169cddb5e8b0aa096d5327a8213
üst
bc3b7ca3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
9 deletions
+9
-9
MasterPageObserver.hxx
sd/source/ui/inc/MasterPageObserver.hxx
+1
-1
unoaprms.hxx
sd/source/ui/inc/unoaprms.hxx
+2
-2
CurrentMasterPagesSelector.cxx
sd/source/ui/sidebar/CurrentMasterPagesSelector.cxx
+2
-2
MasterPageObserver.cxx
sd/source/ui/sidebar/MasterPageObserver.cxx
+4
-4
No files found.
sd/source/ui/inc/MasterPageObserver.hxx
Dosyayı görüntüle @
cc10a8a4
...
...
@@ -39,7 +39,7 @@ class MasterPageObserver
:
public
SdGlobalResource
{
public
:
typedef
::
std
::
set
<
String
>
MasterPageNameSet
;
typedef
::
std
::
set
<
OU
String
>
MasterPageNameSet
;
/** Return the single instance of this class.
*/
...
...
sd/source/ui/inc/unoaprms.hxx
Dosyayı görüntüle @
cc10a8a4
...
...
@@ -104,7 +104,7 @@ public:
{
bOldDimHide
=
bTheOldDimHide
;
bNewDimHide
=
bTheNewDimHide
;
}
void
SetSoundOn
(
sal_Bool
bTheOldSoundOn
,
sal_Bool
bTheNewSoundOn
)
{
bOldSoundOn
=
bTheOldSoundOn
;
bNewSoundOn
=
bTheNewSoundOn
;
}
void
SetSound
(
String
aTheOldSound
,
OUString
aTheNewSound
)
void
SetSound
(
OU
String
aTheOldSound
,
OUString
aTheNewSound
)
{
aOldSoundFile
=
aTheOldSound
;
aNewSoundFile
=
aTheNewSound
;
}
void
SetBlueScreen
(
Color
aTheOldBlueScreen
,
Color
aTheNewBlueScreen
)
{
aOldBlueScreen
=
aTheOldBlueScreen
;
aNewBlueScreen
=
aTheNewBlueScreen
;
}
...
...
@@ -114,7 +114,7 @@ public:
{
pOldPathObj
=
pTheOldPath
;
pNewPathObj
=
pTheNewPath
;
}
void
SetClickAction
(
::
com
::
sun
::
star
::
presentation
::
ClickAction
eTheOldAction
,
::
com
::
sun
::
star
::
presentation
::
ClickAction
eTheNewAction
)
{
eOldClickAction
=
eTheOldAction
;
eNewClickAction
=
eTheNewAction
;
}
void
SetBookmark
(
String
aTheOldBookmark
,
OUString
aTheNewBookmark
)
void
SetBookmark
(
OU
String
aTheOldBookmark
,
OUString
aTheNewBookmark
)
{
aOldBookmark
=
aTheOldBookmark
;
aNewBookmark
=
aTheNewBookmark
;
}
void
SetInvisibleInPres
(
sal_Bool
bTheOldInvisibleInPres
,
sal_Bool
bTheNewInvisibleInPres
)
{
bOldInvisibleInPres
=
bTheOldInvisibleInPres
;
bNewInvisibleInPres
=
bTheNewInvisibleInPres
;
}
...
...
sd/source/ui/sidebar/CurrentMasterPagesSelector.cxx
Dosyayı görüntüle @
cc10a8a4
...
...
@@ -137,7 +137,7 @@ void CurrentMasterPagesSelector::Fill (ItemList& rItemList)
SdPage
*
pMasterPage
;
// Remember the names of the master pages that have been inserted to
// avoid double insertion.
::
std
::
set
<
String
>
aMasterPageNames
;
::
std
::
set
<
OU
String
>
aMasterPageNames
;
for
(
sal_uInt16
nIndex
=
0
;
nIndex
<
nPageCount
;
nIndex
++
)
{
pMasterPage
=
mrDocument
.
GetMasterSdPage
(
nIndex
,
PK_STANDARD
);
...
...
@@ -188,7 +188,7 @@ void CurrentMasterPagesSelector::UpdateSelection (void)
// their master page into a set.
sal_uInt16
nPageCount
=
mrDocument
.
GetSdPageCount
(
PK_STANDARD
);
SdPage
*
pPage
;
::
std
::
set
<
String
>
aNames
;
::
std
::
set
<
OU
String
>
aNames
;
sal_uInt16
nIndex
;
bool
bLoop
(
true
);
for
(
nIndex
=
0
;
nIndex
<
nPageCount
&&
bLoop
;
nIndex
++
)
...
...
sd/source/ui/sidebar/MasterPageObserver.cxx
Dosyayı görüntüle @
cc10a8a4
...
...
@@ -229,7 +229,7 @@ void MasterPageObserver::Implementation::AddEventListener (
aDocumentIterator
!=
maUsedMasterPages
.
end
();
++
aDocumentIterator
)
{
::
std
::
set
<
String
>::
reverse_iterator
aNameIterator
;
::
std
::
set
<
OU
String
>::
reverse_iterator
aNameIterator
;
for
(
aNameIterator
=
aDocumentIterator
->
second
.
rbegin
();
aNameIterator
!=
aDocumentIterator
->
second
.
rend
();
++
aNameIterator
)
...
...
@@ -317,7 +317,7 @@ void MasterPageObserver::Implementation::AnalyzeUsedMasterPages (
{
// Create a set of names of the master pages used by the given document.
sal_uInt16
nMasterPageCount
=
rDocument
.
GetMasterSdPageCount
(
PK_STANDARD
);
::
std
::
set
<
String
>
aCurrentMasterPages
;
::
std
::
set
<
OU
String
>
aCurrentMasterPages
;
for
(
sal_uInt16
nIndex
=
0
;
nIndex
<
nMasterPageCount
;
nIndex
++
)
{
SdPage
*
pMasterPage
=
rDocument
.
GetMasterSdPage
(
nIndex
,
PK_STANDARD
);
...
...
@@ -329,7 +329,7 @@ void MasterPageObserver::Implementation::AnalyzeUsedMasterPages (
RTL_TEXTENCODING_UTF8
).
getStr
());
}
typedef
::
std
::
vector
<
String
>
StringList
;
typedef
::
std
::
vector
<
OU
String
>
StringList
;
StringList
aNewMasterPages
;
StringList
aRemovedMasterPages
;
MasterPageContainer
::
iterator
aOldMasterPagesDescriptor
(
...
...
@@ -338,7 +338,7 @@ void MasterPageObserver::Implementation::AnalyzeUsedMasterPages (
{
StringList
::
iterator
I
;
::
std
::
set
<
String
>::
iterator
J
;
::
std
::
set
<
OU
String
>::
iterator
J
;
int
i
=
0
;
for
(
J
=
aOldMasterPagesDescriptor
->
second
.
begin
();
J
!=
aOldMasterPagesDescriptor
->
second
.
end
();
...
...
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