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
91352803
Kaydet (Commit)
91352803
authored
Tem 31, 2015
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sc: replace boost::function with std::function
Change-Id: Ic98b20eabdc0e62078b28ab0219b00b67e8e1099
üst
4cf0869b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
6 deletions
+8
-6
CellBorderStylePopup.cxx
sc/source/ui/sidebar/CellBorderStylePopup.cxx
+1
-1
CellBorderStylePopup.hxx
sc/source/ui/sidebar/CellBorderStylePopup.hxx
+3
-2
CellLineStylePopup.cxx
sc/source/ui/sidebar/CellLineStylePopup.cxx
+1
-1
CellLineStylePopup.hxx
sc/source/ui/sidebar/CellLineStylePopup.hxx
+3
-2
No files found.
sc/source/ui/sidebar/CellBorderStylePopup.cxx
Dosyayı görüntüle @
91352803
...
...
@@ -24,7 +24,7 @@ namespace sc { namespace sidebar {
CellBorderStylePopup
::
CellBorderStylePopup
(
vcl
::
Window
*
pParent
,
const
::
boost
::
function
<
svx
::
sidebar
::
PopupControl
*
(
svx
::
sidebar
::
PopupContainer
*
)
>&
rControlCreator
)
const
::
std
::
function
<
svx
::
sidebar
::
PopupControl
*
(
svx
::
sidebar
::
PopupContainer
*
)
>&
rControlCreator
)
:
Popup
(
pParent
,
rControlCreator
,
::
OUString
(
"CellBorderStyle"
))
{
}
...
...
sc/source/ui/sidebar/CellBorderStylePopup.hxx
Dosyayı görüntüle @
91352803
...
...
@@ -20,7 +20,8 @@
#define INCLUDED_SC_SOURCE_UI_SIDEBAR_CELLBORDERSTYLEPOPUP_HXX
#include <svx/sidebar/Popup.hxx>
#include <boost/function.hpp>
#include <functional>
namespace
sc
{
namespace
sidebar
{
...
...
@@ -29,7 +30,7 @@ class CellBorderStylePopup : public svx::sidebar::Popup
public
:
CellBorderStylePopup
(
vcl
::
Window
*
pParent
,
const
::
boost
::
function
<
svx
::
sidebar
::
PopupControl
*
(
svx
::
sidebar
::
PopupContainer
*
)
>&
rControlCreator
);
const
::
std
::
function
<
svx
::
sidebar
::
PopupControl
*
(
svx
::
sidebar
::
PopupContainer
*
)
>&
rControlCreator
);
virtual
~
CellBorderStylePopup
();
};
...
...
sc/source/ui/sidebar/CellLineStylePopup.cxx
Dosyayı görüntüle @
91352803
...
...
@@ -24,7 +24,7 @@ namespace sc { namespace sidebar {
CellLineStylePopup
::
CellLineStylePopup
(
vcl
::
Window
*
pParent
,
const
::
boost
::
function
<
svx
::
sidebar
::
PopupControl
*
(
svx
::
sidebar
::
PopupContainer
*
)
>&
rControlCreator
)
const
::
std
::
function
<
svx
::
sidebar
::
PopupControl
*
(
svx
::
sidebar
::
PopupContainer
*
)
>&
rControlCreator
)
:
Popup
(
pParent
,
rControlCreator
,
OUString
(
"CellLineStyle"
))
{
}
...
...
sc/source/ui/sidebar/CellLineStylePopup.hxx
Dosyayı görüntüle @
91352803
...
...
@@ -20,7 +20,8 @@
#define INCLUDED_SC_SOURCE_UI_SIDEBAR_CELLLINESTYLEPOPUP_HXX
#include <svx/sidebar/Popup.hxx>
#include <boost/function.hpp>
#include <functional>
namespace
sc
{
namespace
sidebar
{
...
...
@@ -29,7 +30,7 @@ class CellLineStylePopup : public svx::sidebar::Popup
public
:
CellLineStylePopup
(
vcl
::
Window
*
pParent
,
const
::
boost
::
function
<
svx
::
sidebar
::
PopupControl
*
(
svx
::
sidebar
::
PopupContainer
*
)
>&
rControlCreator
);
const
::
std
::
function
<
svx
::
sidebar
::
PopupControl
*
(
svx
::
sidebar
::
PopupContainer
*
)
>&
rControlCreator
);
virtual
~
CellLineStylePopup
();
void
SetLineStyleSelect
(
sal_uInt16
out
,
sal_uInt16
in
,
sal_uInt16
dis
);
...
...
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