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
86aebe9e
Kaydet (Commit)
86aebe9e
authored
Eyl 09, 2015
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sw: replace boost::ptr_vector with std::vector
Change-Id: I6bef6fc863034b162459a46d332fa66a06916e7f
üst
b70669e4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
tblsel.hxx
sw/inc/tblsel.hxx
+1
-2
tblsel.cxx
sw/source/core/frmedt/tblsel.cxx
+1
-2
tblrwcl.hxx
sw/source/core/inc/tblrwcl.hxx
+4
-0
No files found.
sw/inc/tblsel.hxx
Dosyayı görüntüle @
86aebe9e
...
@@ -23,7 +23,6 @@
...
@@ -23,7 +23,6 @@
#include <swrect.hxx>
#include <swrect.hxx>
#include "swdllapi.h"
#include "swdllapi.h"
#include <boost/ptr_container/ptr_vector.hpp>
#include <o3tl/sorted_vector.hxx>
#include <o3tl/sorted_vector.hxx>
#include <memory>
#include <memory>
...
@@ -137,7 +136,7 @@ public:
...
@@ -137,7 +136,7 @@ public:
// Determines tables affected by a table selection and union rectangles
// Determines tables affected by a table selection and union rectangles
// of the selection (also for split tables)
// of the selection (also for split tables)
typedef
boost
::
ptr_
vector
<
SwSelUnion
>
SwSelUnions
;
typedef
std
::
vector
<
SwSelUnion
>
SwSelUnions
;
// Gets the tables involved in a table selection and the union-rectangles of the selections
// Gets the tables involved in a table selection and the union-rectangles of the selections
// - also for split tables.
// - also for split tables.
...
...
sw/source/core/frmedt/tblsel.cxx
Dosyayı görüntüle @
86aebe9e
...
@@ -1921,8 +1921,7 @@ void MakeSelUnions( SwSelUnions& rUnions, const SwLayoutFrm *pStart,
...
@@ -1921,8 +1921,7 @@ void MakeSelUnions( SwSelUnions& rUnions, const SwLayoutFrm *pStart,
if
(
(
aUnion
.
*
fnRect
->
fnGetWidth
)()
)
if
(
(
aUnion
.
*
fnRect
->
fnGetWidth
)()
)
{
{
SwSelUnion
*
pTmp
=
new
SwSelUnion
(
aUnion
,
const_cast
<
SwTabFrm
*>
(
pTable
)
);
rUnions
.
push_back
(
SwSelUnion
(
aUnion
,
const_cast
<
SwTabFrm
*>
(
pTable
)));
rUnions
.
push_back
(
pTmp
);
}
}
pTable
=
pTable
->
GetFollow
();
pTable
=
pTable
->
GetFollow
();
...
...
sw/source/core/inc/tblrwcl.hxx
Dosyayı görüntüle @
86aebe9e
...
@@ -18,8 +18,12 @@
...
@@ -18,8 +18,12 @@
*/
*/
#ifndef INCLUDED_SW_SOURCE_CORE_INC_TBLRWCL_HXX
#ifndef INCLUDED_SW_SOURCE_CORE_INC_TBLRWCL_HXX
#define INCLUDED_SW_SOURCE_CORE_INC_TBLRWCL_HXX
#define INCLUDED_SW_SOURCE_CORE_INC_TBLRWCL_HXX
#include <cstddef>
#include <cstddef>
#include <vector>
#include <vector>
#include <boost/ptr_container/ptr_vector.hpp>
#include <swtypes.hxx>
#include <swtypes.hxx>
#include <tblsel.hxx>
#include <tblsel.hxx>
#include <swtable.hxx>
#include <swtable.hxx>
...
...
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