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
66d882b3
Kaydet (Commit)
66d882b3
authored
Agu 05, 2011
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use rtl::OUStringHash.
üst
b2773c8d
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
11 additions
and
11 deletions
+11
-11
CustomAnimationPreset.hxx
sd/inc/CustomAnimationPreset.hxx
+3
-3
TransitionPreset.hxx
sd/inc/TransitionPreset.hxx
+1
-1
epptooxml.hxx
sd/source/filter/eppt/epptooxml.hxx
+1
-1
ConfigurationControllerBroadcaster.hxx
...work/configuration/ConfigurationControllerBroadcaster.hxx
+1
-1
ResourceFactoryManager.hxx
...rce/ui/framework/configuration/ResourceFactoryManager.hxx
+1
-1
ModuleController.cxx
sd/source/ui/framework/module/ModuleController.cxx
+2
-2
FrameworkHelper.cxx
sd/source/ui/framework/tools/FrameworkHelper.cxx
+1
-1
facreg.cxx
sd/source/ui/unoidl/facreg.cxx
+1
-1
No files found.
sd/inc/CustomAnimationPreset.hxx
Dosyayı görüntüle @
66d882b3
...
...
@@ -40,8 +40,8 @@
namespace
sd
{
typedef
boost
::
unordered_map
<
rtl
::
OUString
,
CustomAnimationEffectPtr
,
comphelper
::
UStringHash
,
comphelper
::
UStringEqual
>
EffectsSubTypeMap
;
typedef
boost
::
unordered_map
<
rtl
::
OUString
,
rtl
::
OUString
,
comphelper
::
UStringHash
,
comphelper
::
UStringEqual
>
UStringMap
;
typedef
boost
::
unordered_map
<
rtl
::
OUString
,
CustomAnimationEffectPtr
,
rtl
::
O
UStringHash
,
comphelper
::
UStringEqual
>
EffectsSubTypeMap
;
typedef
boost
::
unordered_map
<
rtl
::
OUString
,
rtl
::
OUString
,
rtl
::
O
UStringHash
,
comphelper
::
UStringEqual
>
UStringMap
;
typedef
std
::
vector
<
rtl
::
OUString
>
UStringList
;
class
CustomAnimationPreset
...
...
@@ -80,7 +80,7 @@ private:
};
typedef
boost
::
shared_ptr
<
CustomAnimationPreset
>
CustomAnimationPresetPtr
;
typedef
boost
::
unordered_map
<
rtl
::
OUString
,
CustomAnimationPresetPtr
,
comphelper
::
UStringHash
,
comphelper
::
UStringEqual
>
EffectDescriptorMap
;
typedef
boost
::
unordered_map
<
rtl
::
OUString
,
CustomAnimationPresetPtr
,
rtl
::
O
UStringHash
,
comphelper
::
UStringEqual
>
EffectDescriptorMap
;
typedef
std
::
vector
<
CustomAnimationPresetPtr
>
EffectDescriptorList
;
struct
PresetCategory
...
...
sd/inc/TransitionPreset.hxx
Dosyayı görüntüle @
66d882b3
...
...
@@ -50,7 +50,7 @@ namespace sd {
class
TransitionPreset
;
typedef
boost
::
shared_ptr
<
TransitionPreset
>
TransitionPresetPtr
;
typedef
std
::
list
<
TransitionPresetPtr
>
TransitionPresetList
;
typedef
boost
::
unordered_map
<
rtl
::
OUString
,
rtl
::
OUString
,
comphelper
::
UStringHash
,
comphelper
::
UStringEqual
>
UStringMap
;
typedef
boost
::
unordered_map
<
rtl
::
OUString
,
rtl
::
OUString
,
rtl
::
O
UStringHash
,
comphelper
::
UStringEqual
>
UStringMap
;
class
TransitionPreset
{
...
...
sd/source/filter/eppt/epptooxml.hxx
Dosyayı görüntüle @
66d882b3
...
...
@@ -169,7 +169,7 @@ private:
sal_Int32
nId
;
sal_Int32
nLastIndex
;
};
typedef
::
boost
::
unordered_map
<
::
rtl
::
OUString
,
struct
AuthorComments
,
comphelper
::
UStringHash
,
comphelper
::
UStringEqual
>
AuthorsMap
;
typedef
::
boost
::
unordered_map
<
::
rtl
::
OUString
,
struct
AuthorComments
,
rtl
::
O
UStringHash
,
comphelper
::
UStringEqual
>
AuthorsMap
;
AuthorsMap
maAuthors
;
void
WriteAuthors
();
...
...
sd/source/ui/framework/configuration/ConfigurationControllerBroadcaster.hxx
Dosyayı görüntüle @
66d882b3
...
...
@@ -130,7 +130,7 @@ private:
typedef
::
boost
::
unordered_map
<
rtl
::
OUString
,
ListenerList
,
::
comphelper
::
UStringHash
,
::
rtl
::
O
UStringHash
,
::
comphelper
::
UStringEqual
>
ListenerMap
;
ListenerMap
maListenerMap
;
...
...
sd/source/ui/framework/configuration/ResourceFactoryManager.hxx
Dosyayı görüntüle @
66d882b3
...
...
@@ -97,7 +97,7 @@ private:
typedef
::
boost
::
unordered_map
<
::
rtl
::
OUString
,
css
::
uno
::
Reference
<
css
::
drawing
::
framework
::
XResourceFactory
>
,
::
comphelper
::
UStringHash
,
::
rtl
::
O
UStringHash
,
::
comphelper
::
UStringEqual
>
FactoryMap
;
FactoryMap
maFactoryMap
;
...
...
sd/source/ui/framework/module/ModuleController.cxx
Dosyayı görüntüle @
66d882b3
...
...
@@ -59,7 +59,7 @@ class ModuleController::ResourceToFactoryMap
:
public
::
boost
::
unordered_map
<
rtl
::
OUString
,
rtl
::
OUString
,
::
comphelper
::
UStringHash
,
::
rtl
::
O
UStringHash
,
::
comphelper
::
UStringEqual
>
{
public
:
...
...
@@ -71,7 +71,7 @@ class ModuleController::LoadedFactoryContainer
:
public
::
boost
::
unordered_map
<
rtl
::
OUString
,
WeakReference
<
XInterface
>
,
::
comphelper
::
UStringHash
,
::
rtl
::
O
UStringHash
,
::
comphelper
::
UStringEqual
>
{
public
:
...
...
sd/source/ui/framework/tools/FrameworkHelper.cxx
Dosyayı görüntüle @
66d882b3
...
...
@@ -305,7 +305,7 @@ class FrameworkHelper::ViewURLMap
:
public
::
boost
::
unordered_map
<
rtl
::
OUString
,
ViewShell
::
ShellType
,
::
comphelper
::
UStringHash
,
::
rtl
::
O
UStringHash
,
::
comphelper
::
UStringEqual
>
{
public
:
...
...
sd/source/ui/unoidl/facreg.cxx
Dosyayı görüntüle @
66d882b3
...
...
@@ -255,7 +255,7 @@ enum FactoryId
SlideLayoutControllerFactoryId
,
InsertSlideControllerFactoryId
,
};
typedef
::
boost
::
unordered_map
<
OUString
,
FactoryId
,
comphelper
::
UStringHash
,
comphelper
::
UStringEqual
>
FactoryMap
;
typedef
::
boost
::
unordered_map
<
OUString
,
FactoryId
,
rtl
::
O
UStringHash
,
comphelper
::
UStringEqual
>
FactoryMap
;
namespace
{
...
...
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