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
fe6554d1
Kaydet (Commit)
fe6554d1
authored
Kas 11, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
svtools: boost::ptr_vector->std::vector
Change-Id: Iee77fa2a6b8bc5d186157430c4bfeb7d29056129
üst
aeeef71b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
precompiled_svt.hxx
svtools/inc/pch/precompiled_svt.hxx
+0
-1
svparser.cxx
svtools/source/svrtf/svparser.cxx
+3
-3
No files found.
svtools/inc/pch/precompiled_svt.hxx
Dosyayı görüntüle @
fe6554d1
...
...
@@ -22,7 +22,6 @@
#include <basegfx/range/b2drange.hxx>
#include <boost/noncopyable.hpp>
#include <boost/optional.hpp>
#include <boost/ptr_container/ptr_vector.hpp>
#include <memory>
#include <cassert>
#include <com/sun/star/accessibility/AccessibleEventId.hpp>
...
...
svtools/source/svrtf/svparser.cxx
Dosyayı görüntüle @
fe6554d1
...
...
@@ -23,7 +23,7 @@
#include <rtl/textcvt.h>
#include <rtl/tencinfo.h>
#include <
boost/ptr_container/ptr_vector.hpp
>
#include <
vector
>
// structure to store the actuel data
struct
SvParser_Impl
...
...
@@ -650,7 +650,7 @@ IMPL_LINK_NOARG_TYPED( SvParser, NewDataRead, LinkParamNone*, void )
*
*======================================================================*/
typedef
boost
::
ptr_
vector
<
SvKeyValue
>
SvKeyValueList_Impl
;
typedef
std
::
vector
<
SvKeyValue
>
SvKeyValueList_Impl
;
struct
SvKeyValueIterator
::
Impl
{
...
...
@@ -689,7 +689,7 @@ bool SvKeyValueIterator::GetNext (SvKeyValue &rKeyVal)
void
SvKeyValueIterator
::
Append
(
const
SvKeyValue
&
rKeyVal
)
{
mpImpl
->
maList
.
push_back
(
new
SvKeyValue
(
rKeyVal
)
);
mpImpl
->
maList
.
push_back
(
rKeyVal
);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
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