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
547b472d
Kaydet (Commit)
547b472d
authored
Ock 04, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
vcl/osx boost::unordered_map->std::unordered_map
Change-Id: I00dabf3307734e319a8187df111e1065ea383524
üst
42a4de09
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
13 deletions
+11
-13
saldata.hxx
vcl/inc/osx/saldata.hxx
+3
-3
precompiled_vcl.hxx
vcl/inc/pch/precompiled_vcl.hxx
+2
-2
salgdi.h
vcl/inc/quartz/salgdi.h
+2
-2
salgdi.h
vcl/inc/win/salgdi.h
+2
-2
DataFlavorMapping.hxx
vcl/osx/DataFlavorMapping.hxx
+2
-2
ctfonts.cxx
vcl/quartz/ctfonts.cxx
+0
-2
No files found.
vcl/inc/osx/saldata.hxx
Dosyayı görüntüle @
547b472d
...
...
@@ -34,9 +34,9 @@
#include "salwtype.hxx"
#include <list>
#include <vector>
#include <map>
#include <boost/unordered_set.hpp>
#include <unordered_set>
#include <vector>
#include <cstdio>
#include <cstdarg>
...
...
@@ -70,7 +70,7 @@ public:
SALTIMERPROC
mpTimerProc
;
// timer callback proc
AquaSalInstance
*
mpFirstInstance
;
// pointer of first instance
std
::
list
<
AquaSalFrame
*>
maFrames
;
// list of all frames
boost
::
unordered_set
<
const
AquaSalFrame
*
,
FrameHash
>
maFrameCheck
;
// for fast check of frame existence
std
::
unordered_set
<
const
AquaSalFrame
*
,
FrameHash
>
maFrameCheck
;
// for fast check of frame existence
std
::
list
<
AquaSalFrame
*>
maPresentationFrames
;
// list of frames in presentation mode
SalObject
*
mpFirstObject
;
// pointer of first object window
SalVirtualDevice
*
mpFirstVD
;
// first VirDev
...
...
vcl/inc/pch/precompiled_vcl.hxx
Dosyayı görüntüle @
547b472d
...
...
@@ -146,8 +146,6 @@
#include <boost/scoped_ptr.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/static_assert.hpp>
#include <boost/unordered_map.hpp>
#include <boost/unordered_set.hpp>
#include <cassert>
#include <cmath>
#include <com/sun/star/accessibility/AccessibleEventObject.hpp>
...
...
@@ -396,6 +394,8 @@
#include <uno/current_context.hxx>
#include <uno/dispatcher.h>
#include <uno/mapping.hxx>
#include <unordered_map>
#include <unordered_set>
#include <unotools/calendarwrapper.hxx>
#include <unotools/charclass.hxx>
#include <unotools/configmgr.hxx>
...
...
vcl/inc/quartz/salgdi.h
Dosyayı görüntüle @
547b472d
...
...
@@ -43,7 +43,7 @@
#include "salgdi.hxx"
#include "quartz/salgdicommon.hxx"
#include <
boost/unordered_map.hp
p>
#include <
unordered_ma
p>
class
AquaSalFrame
;
class
ImplDevFontAttributes
;
...
...
@@ -133,7 +133,7 @@ private:
CTFontCollectionRef
mpCTFontCollection
;
CFArrayRef
mpCTFontArray
;
typedef
boost
::
unordered_map
<
sal_IntPtr
,
CoreTextFontData
*>
CTFontContainer
;
typedef
std
::
unordered_map
<
sal_IntPtr
,
CoreTextFontData
*>
CTFontContainer
;
CTFontContainer
maFontContainer
;
};
...
...
vcl/inc/win/salgdi.h
Dosyayı görüntüle @
547b472d
...
...
@@ -29,7 +29,7 @@
#include <vcl/fontcapabilities.hxx>
#include <boost/scoped_ptr.hpp>
#include <
boost/unordered_set.hpp
>
#include <
unordered_set
>
#include <config_graphite.h>
#if ENABLE_GRAPHITE
...
...
@@ -134,7 +134,7 @@ private:
void
ReadGsubTable
(
HDC
)
const
;
typedef
boost
::
unordered_set
<
sal_UCS4
>
UcsHashSet
;
typedef
std
::
unordered_set
<
sal_UCS4
>
UcsHashSet
;
mutable
UcsHashSet
maGsubTable
;
mutable
bool
mbGsubRead
;
public
:
...
...
vcl/osx/DataFlavorMapping.hxx
Dosyayı görüntüle @
547b472d
...
...
@@ -29,8 +29,8 @@
#import <Cocoa/Cocoa.h>
#include <postmac.h>
#include <boost/unordered_map.hpp>
#include <memory>
#include <unordered_map>
#include <boost/shared_ptr.hpp>
/* An interface to get the clipboard data in either
...
...
@@ -119,7 +119,7 @@ private:
private
:
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
datatransfer
::
XMimeContentTypeFactory
>
mrXMimeCntFactory
;
typedef
boost
::
unordered_map
<
OUString
,
NSString
*
,
OUStringHash
>
OfficeOnlyTypes
;
typedef
std
::
unordered_map
<
OUString
,
NSString
*
,
OUStringHash
>
OfficeOnlyTypes
;
mutable
OfficeOnlyTypes
maOfficeOnlyTypes
;
};
...
...
vcl/quartz/ctfonts.cxx
Dosyayı görüntüle @
547b472d
...
...
@@ -17,8 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <boost/unordered_map.hpp>
#include "impfont.hxx"
#include "outfont.hxx"
#include "PhysicalFontCollection.hxx"
...
...
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