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
d6db9f51
Kaydet (Commit)
d6db9f51
authored
Nis 01, 2015
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Replace remaining getCppuType et al with cppu::UnoType
Change-Id: Id85c1cd6c0eade60c7c347c3a3bc3f4a590e5ce5
üst
cc7ae777
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
dp_extensionmanager.cxx
desktop/source/deployment/manager/dp_extensionmanager.cxx
+2
-2
dp_manager.cxx
desktop/source/deployment/manager/dp_manager.cxx
+2
-2
dp_backend.cxx
desktop/source/deployment/registry/dp_backend.cxx
+2
-2
No files found.
desktop/source/deployment/manager/dp_extensionmanager.cxx
Dosyayı görüntüle @
d6db9f51
...
...
@@ -1468,7 +1468,7 @@ void ExtensionManager::addModifyListener(
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
check
();
rBHelper
.
addListener
(
::
getCppuType
(
&
xListener
),
xListener
);
rBHelper
.
addListener
(
cppu
::
UnoType
<
decltype
(
xListener
)
>::
get
(
),
xListener
);
}
...
...
@@ -1477,7 +1477,7 @@ void ExtensionManager::removeModifyListener(
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
check
();
rBHelper
.
removeListener
(
::
getCppuType
(
&
xListener
),
xListener
);
rBHelper
.
removeListener
(
cppu
::
UnoType
<
decltype
(
xListener
)
>::
get
(
),
xListener
);
}
void
ExtensionManager
::
check
()
...
...
desktop/source/deployment/manager/dp_manager.cxx
Dosyayı görüntüle @
d6db9f51
...
...
@@ -520,7 +520,7 @@ void PackageManagerImpl::addModifyListener(
throw
(
RuntimeException
,
std
::
exception
)
{
check
();
rBHelper
.
addListener
(
::
getCppuType
(
&
xListener
),
xListener
);
rBHelper
.
addListener
(
cppu
::
UnoType
<
decltype
(
xListener
)
>::
get
(
),
xListener
);
}
...
...
@@ -529,7 +529,7 @@ void PackageManagerImpl::removeModifyListener(
throw
(
RuntimeException
,
std
::
exception
)
{
check
();
rBHelper
.
removeListener
(
::
getCppuType
(
&
xListener
),
xListener
);
rBHelper
.
removeListener
(
cppu
::
UnoType
<
decltype
(
xListener
)
>::
get
(
),
xListener
);
}
...
...
desktop/source/deployment/registry/dp_backend.cxx
Dosyayı görüntüle @
d6db9f51
...
...
@@ -388,7 +388,7 @@ void Package::addModifyListener(
throw
(
RuntimeException
,
std
::
exception
)
{
check
();
rBHelper
.
addListener
(
::
getCppuType
(
&
xListener
),
xListener
);
rBHelper
.
addListener
(
cppu
::
UnoType
<
decltype
(
xListener
)
>::
get
(
),
xListener
);
}
...
...
@@ -397,7 +397,7 @@ void Package::removeModifyListener(
throw
(
RuntimeException
,
std
::
exception
)
{
check
();
rBHelper
.
removeListener
(
::
getCppuType
(
&
xListener
),
xListener
);
rBHelper
.
removeListener
(
cppu
::
UnoType
<
decltype
(
xListener
)
>::
get
(
),
xListener
);
}
...
...
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