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
4d427eb6
Kaydet (Commit)
4d427eb6
authored
Kas 12, 2015
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sc: boost::ptr_vector->std::vector
Change-Id: I4ab69d0d8cbbadf0e09854bcf5efefa931566a8d
üst
117ded60
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
xicontent.cxx
sc/source/filter/excel/xicontent.cxx
+1
-1
xicontent.hxx
sc/source/filter/inc/xicontent.hxx
+2
-3
No files found.
sc/source/filter/excel/xicontent.cxx
Dosyayı görüntüle @
4d427eb6
...
@@ -1024,7 +1024,7 @@ void XclImpWebQueryBuffer::ReadQsi( XclImpStream& rStrm )
...
@@ -1024,7 +1024,7 @@ void XclImpWebQueryBuffer::ReadQsi( XclImpStream& rStrm )
{
{
ScRange
aRange
;
ScRange
aRange
;
if
(
pRangeData
->
IsReference
(
aRange
)
)
if
(
pRangeData
->
IsReference
(
aRange
)
)
maWQList
.
push_back
(
new
XclImpWebQuery
(
aRange
)
);
maWQList
.
push_back
(
XclImpWebQuery
(
aRange
)
);
}
}
}
}
}
}
...
...
sc/source/filter/inc/xicontent.hxx
Dosyayı görüntüle @
4d427eb6
...
@@ -31,7 +31,6 @@
...
@@ -31,7 +31,6 @@
#include <map>
#include <map>
#include <vector>
#include <vector>
#include <memory>
#include <memory>
#include <boost/ptr_container/ptr_vector.hpp>
#include <boost/noncopyable.hpp>
#include <boost/noncopyable.hpp>
/* ============================================================================
/* ============================================================================
...
@@ -193,7 +192,7 @@ private:
...
@@ -193,7 +192,7 @@ private:
// Web queries ================================================================
// Web queries ================================================================
/** Stores the data of one web query. */
/** Stores the data of one web query. */
class
XclImpWebQuery
:
private
boost
::
noncopyable
class
XclImpWebQuery
{
{
public
:
public
:
explicit
XclImpWebQuery
(
const
ScRange
&
rDestRange
);
explicit
XclImpWebQuery
(
const
ScRange
&
rDestRange
);
...
@@ -247,7 +246,7 @@ public:
...
@@ -247,7 +246,7 @@ public:
void
Apply
();
void
Apply
();
private
:
private
:
typedef
boost
::
ptr_
vector
<
XclImpWebQuery
>
XclImpWebQueryList
;
typedef
std
::
vector
<
XclImpWebQuery
>
XclImpWebQueryList
;
XclImpWebQueryList
maWQList
;
/// List of the web query objects.
XclImpWebQueryList
maWQList
;
/// List of the web query objects.
};
};
...
...
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