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
5859c63f
Kaydet (Commit)
5859c63f
authored
Kas 22, 2014
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Same with SfxUnoControllerArr_Impl.
Change-Id: I927621de8f4c486ef0f77ec6c8da336f36b38b3e
üst
6e385ffa
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
7 deletions
+46
-7
bindings.hxx
include/sfx2/bindings.hxx
+1
-7
bindings.cxx
sfx2/source/control/bindings.cxx
+45
-0
No files found.
include/sfx2/bindings.hxx
Dosyayı görüntüle @
5859c63f
...
...
@@ -28,18 +28,13 @@
#include <com/sun/star/frame/XDispatchProvider.hpp>
#include <com/sun/star/uno/Reference.h>
#include <com/sun/star/frame/XDispatchRecorderSupplier.hpp>
#include <vector>
// some other includes
#include <sfx2/viewfrm.hxx>
// forwards, typedefs, declarations
class
SystemWindow
;
class
SfxSlot
;
class
SfxSlotServer
;
...
...
@@ -54,8 +49,7 @@ class SfxWorkWindow;
class
SfxUnoControllerItem
;
struct
SfxFoundCache_Impl
;
class
SfxFoundCacheArr_Impl
;
typedef
std
::
vector
<
SfxUnoControllerItem
*>
SfxUnoControllerArr_Impl
;
class
SfxUnoControllerArr_Impl
;
enum
class
SfxCallMode
:
sal_uInt16
{
...
...
sfx2/source/control/bindings.cxx
Dosyayı görüntüle @
5859c63f
...
...
@@ -127,6 +127,51 @@ public:
}
};
class
SfxUnoControllerArr_Impl
{
typedef
std
::
vector
<
SfxUnoControllerItem
*>
DataType
;
DataType
maData
;
public
:
typedef
DataType
::
iterator
iterator
;
iterator
begin
()
{
return
maData
.
begin
();
}
iterator
end
()
{
return
maData
.
end
();
}
void
erase
(
iterator
it
)
{
maData
.
erase
(
it
);
}
SfxUnoControllerItem
*
operator
[]
(
size_t
i
)
{
return
maData
[
i
];
}
const
SfxUnoControllerItem
*
operator
[]
(
size_t
i
)
const
{
return
maData
[
i
];
}
size_t
size
()
const
{
return
maData
.
size
();
}
void
push_back
(
SfxUnoControllerItem
*
p
)
{
maData
.
push_back
(
p
);
}
};
class
SfxAsyncExec_Impl
{
::
com
::
sun
::
star
::
util
::
URL
aCommand
;
...
...
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