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
24c52aae
Kaydet (Commit)
24c52aae
authored
Ock 01, 2015
tarafından
Takeshi Abe
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
starmath: boost::shared_ptr to std::shared_ptr
Change-Id: Id077493f9e462a00c427bc493f823fed79617c07
üst
53f51e32
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
ElementsDockingWindow.hxx
starmath/inc/ElementsDockingWindow.hxx
+2
-1
node.hxx
starmath/inc/node.hxx
+2
-2
No files found.
starmath/inc/ElementsDockingWindow.hxx
Dosyayı görüntüle @
24c52aae
...
@@ -28,6 +28,7 @@
...
@@ -28,6 +28,7 @@
#include <document.hxx>
#include <document.hxx>
#include <node.hxx>
#include <node.hxx>
#include <memory>
class
SmElement
class
SmElement
{
{
...
@@ -85,7 +86,7 @@ class SmElementsControl : public Control
...
@@ -85,7 +86,7 @@ class SmElementsControl : public Control
virtual
void
MouseButtonDown
(
const
MouseEvent
&
rMEvt
)
SAL_OVERRIDE
;
virtual
void
MouseButtonDown
(
const
MouseEvent
&
rMEvt
)
SAL_OVERRIDE
;
virtual
void
MouseMove
(
const
MouseEvent
&
rMEvt
)
SAL_OVERRIDE
;
virtual
void
MouseMove
(
const
MouseEvent
&
rMEvt
)
SAL_OVERRIDE
;
typedef
boost
::
shared_ptr
<
SmElement
>
SmElementPointer
;
typedef
std
::
shared_ptr
<
SmElement
>
SmElementPointer
;
typedef
std
::
vector
<
SmElementPointer
>
SmElementList
;
typedef
std
::
vector
<
SmElementPointer
>
SmElementList
;
SmDocShell
*
mpDocShell
;
SmDocShell
*
mpDocShell
;
...
...
starmath/inc/node.hxx
Dosyayı görüntüle @
24c52aae
...
@@ -30,7 +30,7 @@
...
@@ -30,7 +30,7 @@
#include "rect.hxx"
#include "rect.hxx"
#include "format.hxx"
#include "format.hxx"
#include <boost/ptr_container/ptr_deque.hpp>
#include <boost/ptr_container/ptr_deque.hpp>
#include <memory>
#define ATTR_BOLD 0x0001
#define ATTR_BOLD 0x0001
#define ATTR_ITALIC 0x0002
#define ATTR_ITALIC 0x0002
...
@@ -59,7 +59,7 @@ class SmDocShell;
...
@@ -59,7 +59,7 @@ class SmDocShell;
class
SmNode
;
class
SmNode
;
class
SmStructureNode
;
class
SmStructureNode
;
typedef
boost
::
shared_ptr
<
SmNode
>
SmNodePointer
;
typedef
std
::
shared_ptr
<
SmNode
>
SmNodePointer
;
typedef
boost
::
ptr_deque
<
SmNode
>
SmNodeStack
;
typedef
boost
::
ptr_deque
<
SmNode
>
SmNodeStack
;
typedef
std
::
vector
<
SmNode
*
>
SmNodeArray
;
typedef
std
::
vector
<
SmNode
*
>
SmNodeArray
;
typedef
std
::
vector
<
SmStructureNode
*
>
SmStructureNodeArray
;
typedef
std
::
vector
<
SmStructureNode
*
>
SmStructureNodeArray
;
...
...
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