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
bf96ec5d
Kaydet (Commit)
bf96ec5d
authored
Şub 16, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
boost->std
Change-Id: I44b208a2c5c5bf73ac025462c9f7bd499ed0a49b
üst
6b45e4fa
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
29 additions
and
17 deletions
+29
-17
codecompletecache.hxx
include/basic/codecompletecache.hxx
+0
-1
sbmod.hxx
include/basic/sbmod.hxx
+3
-2
scopeguard.hxx
include/comphelper/scopeguard.hxx
+5
-4
solarmutex.hxx
include/comphelper/solarmutex.hxx
+4
-2
syntaxhighlight.hxx
include/comphelper/syntaxhighlight.hxx
+3
-2
threadpool.hxx
include/comphelper/threadpool.hxx
+4
-2
languagetag.hxx
include/i18nlangtag/languagetag.hxx
+2
-2
oneToOneMapping.hxx
include/i18nutil/oneToOneMapping.hxx
+8
-2
No files found.
include/basic/codecompletecache.hxx
Dosyayı görüntüle @
bf96ec5d
...
...
@@ -23,7 +23,6 @@
#include <basic/sbdef.hxx>
#include <basic/sbxobj.hxx>
#include <basic/sbxdef.hxx>
#include <boost/utility.hpp>
#include <rtl/ustring.hxx>
#include <svtools/miscopt.hxx>
#include <unordered_map>
...
...
include/basic/sbmod.hxx
Dosyayı görüntüle @
bf96ec5d
...
...
@@ -28,7 +28,6 @@
#include <rtl/ustring.hxx>
#include <vector>
#include <deque>
#include <boost/utility.hpp>
#include <basic/basicdllapi.h>
#include <basic/codecompletecache.hxx>
...
...
@@ -46,7 +45,7 @@ class ModuleInitDependencyMap;
struct
ClassModuleRunInitItem
;
struct
SbClassData
;
class
BASIC_DLLPUBLIC
SbModule
:
public
SbxObject
,
private
::
boost
::
noncopyable
class
BASIC_DLLPUBLIC
SbModule
:
public
SbxObject
{
friend
class
SbiCodeGen
;
friend
class
SbMethod
;
...
...
@@ -58,6 +57,8 @@ class BASIC_DLLPUBLIC SbModule : public SbxObject, private ::boost::noncopyable
BASIC_DLLPRIVATE
void
implClearIfVarDependsOnDeletedBasic
(
SbxVariable
*
pVar
,
StarBASIC
*
pDeletedBasic
);
SbModule
(
const
SbModule
&
)
SAL_DELETED_FUNCTION
;
SbModule
&
operator
=
(
const
SbModule
&
)
SAL_DELETED_FUNCTION
;
protected
:
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
script
::
XInvocation
>
mxWrapper
;
OUString
aOUSource
;
...
...
include/comphelper/scopeguard.hxx
Dosyayı görüntüle @
bf96ec5d
...
...
@@ -22,16 +22,13 @@
#include <comphelper/comphelperdllapi.h>
#include <boost/function.hpp>
#include <boost/noncopyable.hpp>
#include <boost/bind.hpp>
namespace
comphelper
{
/** ScopeGuard to ease writing exception-safe code.
*/
class
COMPHELPER_DLLPUBLIC
ScopeGuard
:
private
::
boost
::
noncopyable
// noncopyable until we have
// good reasons...
class
COMPHELPER_DLLPUBLIC
ScopeGuard
{
public
:
enum
exc_handling
{
IGNORE_EXCEPTIONS
,
ALLOW_EXCEPTIONS
};
...
...
@@ -53,6 +50,10 @@ public:
void
dismiss
();
private
:
// noncopyable until we have good reasons...
ScopeGuard
(
const
ScopeGuard
&
)
SAL_DELETED_FUNCTION
;
ScopeGuard
&
operator
=
(
const
ScopeGuard
&
)
SAL_DELETED_FUNCTION
;
::
boost
::
function0
<
void
>
m_func
;
// preferring portable syntax
exc_handling
const
m_excHandling
;
};
...
...
include/comphelper/solarmutex.hxx
Dosyayı görüntüle @
bf96ec5d
...
...
@@ -22,14 +22,13 @@
#include <sal/config.h>
#include <boost/noncopyable.hpp>
#include <comphelper/comphelperdllapi.h>
namespace
comphelper
{
/** SolarMutex interface, needed for Application::GetSolarMutex().
*/
class
COMPHELPER_DLLPUBLIC
SolarMutex
:
private
boost
::
noncopyable
{
class
COMPHELPER_DLLPUBLIC
SolarMutex
{
public
:
virtual
void
acquire
()
=
0
;
...
...
@@ -41,6 +40,9 @@ protected:
SolarMutex
();
virtual
~
SolarMutex
();
private
:
SolarMutex
(
const
SolarMutex
&
)
SAL_DELETED_FUNCTION
;
SolarMutex
&
operator
=
(
const
SolarMutex
&
)
SAL_DELETED_FUNCTION
;
};
}
...
...
include/comphelper/syntaxhighlight.hxx
Dosyayı görüntüle @
bf96ec5d
...
...
@@ -19,7 +19,6 @@
#ifndef INCLUDED_COMPHELPER_SYNTAXHIGHLIGHT_HXX
#define INCLUDED_COMPHELPER_SYNTAXHIGHLIGHT_HXX
#include <boost/noncopyable.hpp>
#include <rtl/ustring.hxx>
#include <comphelper/comphelperdllapi.h>
...
...
@@ -66,13 +65,15 @@ enum HighlighterLanguage
HIGHLIGHT_SQL
};
class
COMPHELPER_DLLPUBLIC
SyntaxHighlighter
:
private
boost
::
noncopyable
class
COMPHELPER_DLLPUBLIC
SyntaxHighlighter
{
class
Tokenizer
;
HighlighterLanguage
eLanguage
;
std
::
unique_ptr
<
Tokenizer
>
m_tokenizer
;
SyntaxHighlighter
(
const
SyntaxHighlighter
&
)
SAL_DELETED_FUNCTION
;
SyntaxHighlighter
&
operator
=
(
const
SyntaxHighlighter
&
)
SAL_DELETED_FUNCTION
;
public
:
SyntaxHighlighter
(
HighlighterLanguage
language
);
~
SyntaxHighlighter
();
...
...
include/comphelper/threadpool.hxx
Dosyayı görüntüle @
bf96ec5d
...
...
@@ -15,7 +15,6 @@
#include <osl/mutex.hxx>
#include <osl/conditn.hxx>
#include <rtl/ref.hxx>
#include <boost/noncopyable.hpp>
#include <vector>
#include <comphelper/comphelperdllapi.h>
...
...
@@ -30,7 +29,7 @@ public:
};
/// A very basic thread pool implementation
class
COMPHELPER_DLLPUBLIC
ThreadPool
:
private
boost
::
noncopyable
class
COMPHELPER_DLLPUBLIC
ThreadPool
{
public
:
/// returns a pointer to a shared pool with optimal thread
...
...
@@ -47,6 +46,9 @@ public:
void
waitUntilEmpty
();
private
:
ThreadPool
(
const
ThreadPool
&
)
SAL_DELETED_FUNCTION
;
ThreadPool
&
operator
=
(
const
ThreadPool
&
)
SAL_DELETED_FUNCTION
;
class
ThreadWorker
;
friend
class
ThreadWorker
;
...
...
include/i18nlangtag/languagetag.hxx
Dosyayı görüntüle @
bf96ec5d
...
...
@@ -16,7 +16,7 @@
#include <i18nlangtag/i18nlangtagdllapi.h>
#include <i18nlangtag/lang.h>
#include <
boost/shared_ptr.hpp
>
#include <
memory
>
#include <vector>
typedef
struct
_rtl_Locale
rtl_Locale
;
// as in rtl/locale.h
...
...
@@ -507,7 +507,7 @@ public:
/** @ATTENTION: _ONLY_ to be called by the application's configuration! */
static
void
setConfiguredSystemLanguage
(
LanguageType
nLang
);
typedef
::
boost
::
shared_ptr
<
LanguageTagImpl
>
ImplPtr
;
typedef
std
::
shared_ptr
<
LanguageTagImpl
>
ImplPtr
;
private
:
...
...
include/i18nutil/oneToOneMapping.hxx
Dosyayı görüntüle @
bf96ec5d
...
...
@@ -19,7 +19,6 @@
#ifndef INCLUDED_I18NUTIL_ONETOONEMAPPING_HXX
#define INCLUDED_I18NUTIL_ONETOONEMAPPING_HXX
#include <boost/noncopyable.hpp>
#include <rtl/ustring.hxx>
#include <i18nutil/i18nutildllapi.h>
...
...
@@ -41,8 +40,11 @@ struct UnicodePairWithFlag
UnicodePairFlag
flag
;
};
class
I18NUTIL_DLLPUBLIC
oneToOneMapping
:
private
boost
::
noncopyable
class
I18NUTIL_DLLPUBLIC
oneToOneMapping
{
private
:
oneToOneMapping
(
const
oneToOneMapping
&
)
SAL_DELETED_FUNCTION
;
oneToOneMapping
&
operator
=
(
const
oneToOneMapping
&
)
SAL_DELETED_FUNCTION
;
public
:
oneToOneMapping
(
OneToOneMappingTable_t
*
rpTable
,
const
size_t
rnSize
,
const
size_t
rnUnitSize
=
sizeof
(
OneToOneMappingTable_t
)
);
virtual
~
oneToOneMapping
();
...
...
@@ -60,6 +62,10 @@ protected:
class
I18NUTIL_DLLPUBLIC
oneToOneMappingWithFlag
:
public
oneToOneMapping
{
private
:
oneToOneMappingWithFlag
(
const
oneToOneMappingWithFlag
&
)
SAL_DELETED_FUNCTION
;
oneToOneMappingWithFlag
&
operator
=
(
const
oneToOneMappingWithFlag
&
)
SAL_DELETED_FUNCTION
;
friend
class
widthfolding
;
public
:
...
...
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