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
124175c4
Kaydet (Commit)
124175c4
authored
Şub 26, 2011
tarafından
npcdoom
Kaydeden (comit)
Luboš Luňák
Mar 01, 2011
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Change deprecated List for std::vector<String> in FillThemeList.
Signed-off-by:
Luboš Luňák
<
l.lunak@suse.cz
>
üst
2d43419e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
gallery.hxx
svx/inc/gallery.hxx
+1
-1
galexpl.cxx
svx/source/gallery2/galexpl.cxx
+3
-3
No files found.
svx/inc/gallery.hxx
Dosyayı görüntüle @
124175c4
...
@@ -228,7 +228,7 @@ public:
...
@@ -228,7 +228,7 @@ public:
BOOL
GetVCDrawModel
(
FmFormModel
&
rModel
)
const
;
BOOL
GetVCDrawModel
(
FmFormModel
&
rModel
)
const
;
BOOL
IsLinkage
()
const
;
BOOL
IsLinkage
()
const
;
static
BOOL
FillThemeList
(
List
&
rThemeList
);
static
bool
FillThemeList
(
std
::
vector
<
String
>
&
rThemeList
);
// FillObjList is filling rObjList with Strings of the internal Gallery Object URL
// FillObjList is filling rObjList with Strings of the internal Gallery Object URL
static
BOOL
FillObjList
(
const
String
&
rThemeName
,
List
&
rObjList
);
static
BOOL
FillObjList
(
const
String
&
rThemeName
,
List
&
rObjList
);
...
...
svx/source/gallery2/galexpl.cxx
Dosyayı görüntüle @
124175c4
...
@@ -109,7 +109,7 @@ BOOL GalleryExplorer::IsLinkage() const
...
@@ -109,7 +109,7 @@ BOOL GalleryExplorer::IsLinkage() const
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
BOOL
GalleryExplorer
::
FillThemeList
(
List
&
rThemeList
)
bool
GalleryExplorer
::
FillThemeList
(
std
::
vector
<
String
>
&
rThemeList
)
{
{
Gallery
*
pGal
=
ImplGetGallery
();
Gallery
*
pGal
=
ImplGetGallery
();
...
@@ -120,11 +120,11 @@ BOOL GalleryExplorer::FillThemeList( List& rThemeList )
...
@@ -120,11 +120,11 @@ BOOL GalleryExplorer::FillThemeList( List& rThemeList )
const
GalleryThemeEntry
*
pEntry
=
pGal
->
GetThemeInfo
(
i
);
const
GalleryThemeEntry
*
pEntry
=
pGal
->
GetThemeInfo
(
i
);
if
(
pEntry
&&
!
pEntry
->
IsReadOnly
()
&&
!
pEntry
->
IsHidden
()
)
if
(
pEntry
&&
!
pEntry
->
IsReadOnly
()
&&
!
pEntry
->
IsHidden
()
)
rThemeList
.
Insert
(
new
String
(
pEntry
->
GetThemeName
()
),
LIST_APPEND
);
rThemeList
.
push_back
(
pEntry
->
GetThemeName
()
);
}
}
}
}
return
(
rThemeList
.
Count
()
>
0
);
return
!
rThemeList
.
empty
(
);
}
}
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
...
...
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