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
81c6ae87
Kaydet (Commit)
81c6ae87
authored
Agu 03, 2015
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
svx: replace boost::function with std::function
Change-Id: I52def97b8dfa9e4dba5d47937de45e587a23b4de
üst
300b4fa8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
20 additions
and
17 deletions
+20
-17
GallerySplitter.cxx
svx/source/gallery2/GallerySplitter.cxx
+1
-1
GallerySplitter.hxx
svx/source/gallery2/GallerySplitter.hxx
+4
-3
galbrws1.cxx
svx/source/gallery2/galbrws1.cxx
+2
-2
galbrws1.hxx
svx/source/gallery2/galbrws1.hxx
+5
-5
TextCharacterSpacingPopup.cxx
svx/source/sidebar/text/TextCharacterSpacingPopup.cxx
+1
-1
TextCharacterSpacingPopup.hxx
svx/source/sidebar/text/TextCharacterSpacingPopup.hxx
+2
-2
TextUnderlinePopup.cxx
svx/source/sidebar/text/TextUnderlinePopup.cxx
+1
-1
TextUnderlinePopup.hxx
svx/source/sidebar/text/TextUnderlinePopup.hxx
+4
-2
No files found.
svx/source/gallery2/GallerySplitter.cxx
Dosyayı görüntüle @
81c6ae87
...
...
@@ -22,7 +22,7 @@
GallerySplitter
::
GallerySplitter
(
vcl
::
Window
*
pParent
,
WinBits
nStyle
,
const
::
boost
::
function
<
void
()
>&
rDataChangeFunctor
)
const
::
std
::
function
<
void
()
>&
rDataChangeFunctor
)
:
Splitter
(
pParent
,
nStyle
)
,
maDataChangeFunctor
(
rDataChangeFunctor
)
{
...
...
svx/source/gallery2/GallerySplitter.hxx
Dosyayı görüntüle @
81c6ae87
...
...
@@ -20,7 +20,8 @@
#define INCLUDED_SVX_SOURCE_GALLERY2_GALLERYSPLITTER_HXX
#include <vcl/split.hxx>
#include <boost/function.hpp>
#include <functional>
class
GallerySplitter
:
public
Splitter
{
...
...
@@ -28,13 +29,13 @@ public:
GallerySplitter
(
vcl
::
Window
*
pParent
,
WinBits
nStyle
,
const
::
boost
::
function
<
void
()
>&
rDataChangeFunctor
);
const
::
std
::
function
<
void
()
>&
rDataChangeFunctor
);
protected
:
virtual
void
DataChanged
(
const
DataChangedEvent
&
rDCEvt
)
SAL_OVERRIDE
;
private
:
::
boost
::
function
<
void
()
>
maDataChangeFunctor
;
::
std
::
function
<
void
()
>
maDataChangeFunctor
;
};
...
...
svx/source/gallery2/galbrws1.cxx
Dosyayı görüntüle @
81c6ae87
...
...
@@ -107,8 +107,8 @@ bool GalleryThemeListBox::PreNotify( NotifyEvent& rNEvt )
GalleryBrowser1
::
GalleryBrowser1
(
vcl
::
Window
*
pParent
,
Gallery
*
pGallery
,
const
::
boost
::
function
<
sal_Bool
(
const
KeyEvent
&
,
Window
*
)
>&
rKeyInputHandler
,
const
::
boost
::
function
<
void
()
>&
rThemeSlectionHandler
)
const
::
std
::
function
<
sal_Bool
(
const
KeyEvent
&
,
Window
*
)
>&
rKeyInputHandler
,
const
::
std
::
function
<
void
()
>&
rThemeSlectionHandler
)
:
Control
(
pParent
,
WB_TABSTOP
),
maNewTheme
(
VclPtr
<
GalleryButton
>::
Create
(
this
,
WB_3DLOOK
)
),
...
...
svx/source/gallery2/galbrws1.hxx
Dosyayı görüntüle @
81c6ae87
...
...
@@ -26,7 +26,7 @@
#include <svl/lstner.hxx>
#include <vector>
#include <
boost/function.hpp
>
#include <
functional
>
class
GalleryBrowser1
;
...
...
@@ -91,8 +91,8 @@ private:
Image
aImgReadOnly
;
Image
aImgImported
;
::
boost
::
function
<
sal_Bool
(
const
KeyEvent
&
,
Window
*
)
>
maKeyInputHandler
;
::
boost
::
function
<
void
()
>
maThemeSlectionHandler
;
::
std
::
function
<
sal_Bool
(
const
KeyEvent
&
,
Window
*
)
>
maKeyInputHandler
;
::
std
::
function
<
void
()
>
maThemeSlectionHandler
;
void
ImplAdjustControls
();
sal_uIntPtr
ImplInsertThemeEntry
(
const
GalleryThemeEntry
*
pEntry
);
...
...
@@ -122,8 +122,8 @@ public:
GalleryBrowser1
(
vcl
::
Window
*
pParent
,
Gallery
*
pGallery
,
const
::
boost
::
function
<
sal_Bool
(
const
KeyEvent
&
,
Window
*
)
>&
rKeyInputHandler
,
const
::
boost
::
function
<
void
()
>&
rThemeSlectionHandler
);
const
::
std
::
function
<
sal_Bool
(
const
KeyEvent
&
,
Window
*
)
>&
rKeyInputHandler
,
const
::
std
::
function
<
void
()
>&
rThemeSlectionHandler
);
virtual
~
GalleryBrowser1
();
virtual
void
dispose
()
SAL_OVERRIDE
;
...
...
svx/source/sidebar/text/TextCharacterSpacingPopup.cxx
Dosyayı görüntüle @
81c6ae87
...
...
@@ -25,7 +25,7 @@ namespace svx { namespace sidebar {
TextCharacterSpacingPopup
::
TextCharacterSpacingPopup
(
vcl
::
Window
*
pParent
,
const
::
boost
::
function
<
VclPtr
<
PopupControl
>
(
PopupContainer
*
)
>&
rControlCreator
)
const
::
std
::
function
<
VclPtr
<
PopupControl
>
(
PopupContainer
*
)
>&
rControlCreator
)
:
Popup
(
pParent
,
rControlCreator
,
...
...
svx/source/sidebar/text/TextCharacterSpacingPopup.hxx
Dosyayı görüntüle @
81c6ae87
...
...
@@ -21,7 +21,7 @@
#include "svx/sidebar/Popup.hxx"
#include <
boost/function.hpp
>
#include <
functional
>
namespace
svx
{
namespace
sidebar
{
...
...
@@ -31,7 +31,7 @@ class TextCharacterSpacingPopup
public
:
TextCharacterSpacingPopup
(
vcl
::
Window
*
pParent
,
const
::
boost
::
function
<
VclPtr
<
PopupControl
>
(
PopupContainer
*
)
>&
rControlCreator
);
const
::
std
::
function
<
VclPtr
<
PopupControl
>
(
PopupContainer
*
)
>&
rControlCreator
);
virtual
~
TextCharacterSpacingPopup
();
void
Rearrange
(
bool
bLBAvailable
,
bool
bAvailable
,
long
nKerning
);
...
...
svx/source/sidebar/text/TextUnderlinePopup.cxx
Dosyayı görüntüle @
81c6ae87
...
...
@@ -23,7 +23,7 @@ namespace svx { namespace sidebar {
TextUnderlinePopup
::
TextUnderlinePopup
(
vcl
::
Window
*
pParent
,
const
::
boost
::
function
<
PopupControl
*
(
PopupContainer
*
)
>&
rControlCreator
)
const
::
std
::
function
<
PopupControl
*
(
PopupContainer
*
)
>&
rControlCreator
)
:
Popup
(
pParent
,
rControlCreator
,
...
...
svx/source/sidebar/text/TextUnderlinePopup.hxx
Dosyayı görüntüle @
81c6ae87
...
...
@@ -21,8 +21,10 @@
#include "svx/sidebar/Popup.hxx"
#include <boost/function.hpp>
#include <vcl/vclenum.hxx>
#include <functional>
namespace
svx
{
namespace
sidebar
{
class
TextUnderlinePopup
...
...
@@ -31,7 +33,7 @@ class TextUnderlinePopup
public
:
TextUnderlinePopup
(
vcl
::
Window
*
pParent
,
const
::
boost
::
function
<
PopupControl
*
(
PopupContainer
*
)
>&
rControlCreator
);
const
::
std
::
function
<
PopupControl
*
(
PopupContainer
*
)
>&
rControlCreator
);
virtual
~
TextUnderlinePopup
();
void
Rearrange
(
FontUnderline
eLine
);
...
...
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