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
8de63ad5
Kaydet (Commit)
8de63ad5
authored
Şub 17, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
some more de-boostification
Change-Id: I8ee8fd7b99598e484430d91e17e468951288d72d
üst
0f46d906
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
15 deletions
+23
-15
FormulaCompiler.hxx
include/formula/FormulaCompiler.hxx
+7
-6
langbox.hxx
include/svx/langbox.hxx
+4
-3
overlaymanager.hxx
include/svx/sdr/overlay/overlaymanager.hxx
+5
-3
overlayobject.hxx
include/svx/sdr/overlay/overlayobject.hxx
+4
-1
animatedimagespeer.hxx
include/toolkit/awt/animatedimagespeer.hxx
+3
-2
No files found.
include/formula/FormulaCompiler.hxx
Dosyayı görüntüle @
8de63ad5
...
...
@@ -25,9 +25,6 @@
#include <rtl/ustring.hxx>
#include <tools/debug.hxx>
#include <boost/shared_ptr.hpp>
#include <boost/noncopyable.hpp>
#include <com/sun/star/uno/Sequence.hxx>
#include <formula/opcode.hxx>
...
...
@@ -35,6 +32,7 @@
#include <formula/token.hxx>
#include <formula/ExternalReferenceHelper.hxx>
#include <memory>
#include <unordered_map>
#define FORMULA_MAXJUMPCOUNT 32
/* maximum number of jumps (ocChoose) */
...
...
@@ -64,8 +62,11 @@ struct FormulaArrayStack
typedef
std
::
unordered_map
<
OUString
,
OpCode
,
OUStringHash
,
::
std
::
equal_to
<
OUString
>
>
OpCodeHashMap
;
typedef
std
::
unordered_map
<
OUString
,
OUString
,
OUStringHash
,
::
std
::
equal_to
<
OUString
>
>
ExternalHashMap
;
class
FORMULA_DLLPUBLIC
FormulaCompiler
:
boost
::
noncopyable
class
FORMULA_DLLPUBLIC
FormulaCompiler
{
private
:
FormulaCompiler
(
const
FormulaCompiler
&
)
SAL_DELETED_FUNCTION
;
FormulaCompiler
&
operator
=
(
const
FormulaCompiler
&
)
SAL_DELETED_FUNCTION
;
public
:
FormulaCompiler
();
FormulaCompiler
(
FormulaTokenArray
&
_rArr
);
...
...
@@ -191,8 +192,8 @@ public:
};
public
:
typedef
::
boost
::
shared_ptr
<
const
OpCodeMap
>
OpCodeMapPtr
;
typedef
::
boost
::
shared_ptr
<
OpCodeMap
>
NonConstOpCodeMapPtr
;
typedef
std
::
shared_ptr
<
const
OpCodeMap
>
OpCodeMapPtr
;
typedef
std
::
shared_ptr
<
OpCodeMap
>
NonConstOpCodeMapPtr
;
/** Get OpCodeMap for formula language.
@param nLanguage
...
...
include/svx/langbox.hxx
Dosyayı görüntüle @
8de63ad5
...
...
@@ -24,7 +24,6 @@
#include <vcl/image.hxx>
#include <vcl/lstbox.hxx>
#include <vcl/combobox.hxx>
#include <boost/noncopyable.hpp>
#define LANG_LIST_EMPTY 0x0000
...
...
@@ -45,12 +44,14 @@
// locale, such as Arabic as
// opposed to Arabic-Egypt.
// load language strings from resource
SVX_DLLPUBLIC
OUString
GetDicInfoStr
(
const
OUString
&
rName
,
const
sal_uInt16
nLang
,
bool
bNeg
);
class
SVX_DLLPUBLIC
SvxLanguageBoxBase
:
boost
::
noncopyable
class
SVX_DLLPUBLIC
SvxLanguageBoxBase
{
private
:
SvxLanguageBoxBase
(
const
SvxLanguageBoxBase
&
)
SAL_DELETED_FUNCTION
;
SvxLanguageBoxBase
&
operator
=
(
const
SvxLanguageBoxBase
&
)
SAL_DELETED_FUNCTION
;
public
:
explicit
SvxLanguageBoxBase
(
bool
bCheck
);
virtual
~
SvxLanguageBoxBase
();
...
...
include/svx/sdr/overlay/overlaymanager.hxx
Dosyayı görüntüle @
8de63ad5
...
...
@@ -20,7 +20,6 @@
#ifndef INCLUDED_SVX_SDR_OVERLAY_OVERLAYMANAGER_HXX
#define INCLUDED_SVX_SDR_OVERLAY_OVERLAYMANAGER_HXX
#include <boost/utility.hpp>
#include <rtl/ref.hxx>
#include <svx/sdr/animation/scheduler.hxx>
#include <svx/sdr/overlay/overlayobject.hxx>
...
...
@@ -54,10 +53,13 @@ namespace sdr
namespace
overlay
{
class
SVX_DLLPUBLIC
OverlayManager
:
private
boost
::
noncopyable
,
protected
::
sdr
::
animation
::
Scheduler
:
protected
::
sdr
::
animation
::
Scheduler
,
public
salhelper
::
SimpleReferenceObject
{
private
:
OverlayManager
(
const
OverlayManager
&
)
SAL_DELETED_FUNCTION
;
OverlayManager
&
operator
=
(
const
OverlayManager
&
)
SAL_DELETED_FUNCTION
;
protected
:
// the OutputDevice to work on, set on construction and not to be changed
OutputDevice
&
rmOutputDevice
;
...
...
include/svx/sdr/overlay/overlayobject.hxx
Dosyayı görüntüle @
8de63ad5
...
...
@@ -56,9 +56,12 @@ namespace sdr
{
namespace
overlay
{
class
SVX_DLLPUBLIC
OverlayObject
:
p
rivate
::
boost
::
noncopyable
,
p
ublic
::
sdr
::
animation
::
Event
class
SVX_DLLPUBLIC
OverlayObject
:
public
::
sdr
::
animation
::
Event
{
private
:
OverlayObject
(
const
OverlayObject
&
)
SAL_DELETED_FUNCTION
;
OverlayObject
&
operator
=
(
const
OverlayObject
&
)
SAL_DELETED_FUNCTION
;
// Manager is allowed access to private Member mpOverlayManager
friend
class
OverlayManager
;
...
...
include/toolkit/awt/animatedimagespeer.hxx
Dosyayı görüntüle @
8de63ad5
...
...
@@ -27,7 +27,6 @@
#include <cppuhelper/implbase3.hxx>
#include <boost/noncopyable.hpp>
#include <memory>
namespace
toolkit
...
...
@@ -45,7 +44,6 @@ namespace toolkit
>
AnimatedImagesPeer_Base
;
class
AnimatedImagesPeer
:
public
AnimatedImagesPeer_Base
,
public
::
boost
::
noncopyable
{
public
:
AnimatedImagesPeer
();
...
...
@@ -86,6 +84,9 @@ namespace toolkit
void
impl_updateImages_nolck
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
uno
::
XInterface
>&
i_animatedImages
);
private
:
AnimatedImagesPeer
(
const
AnimatedImagesPeer
&
)
SAL_DELETED_FUNCTION
;
AnimatedImagesPeer
&
operator
=
(
const
AnimatedImagesPeer
&
)
SAL_DELETED_FUNCTION
;
std
::
unique_ptr
<
AnimatedImagesPeer_Data
>
m_xData
;
};
...
...
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