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
28c8a529
Kaydet (Commit)
28c8a529
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: I299ac00ea8604c4cd7e27458e1a45380fad819d3
üst
ead30623
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
scriptdlg.cxx
cui/source/dialogs/scriptdlg.cxx
+2
-2
connpoolconfig.cxx
cui/source/options/connpoolconfig.cxx
+2
-2
optasian.cxx
cui/source/options/optasian.cxx
+1
-1
No files found.
cui/source/dialogs/scriptdlg.cxx
Dosyayı görüntüle @
28c8a529
...
...
@@ -1365,7 +1365,7 @@ OUString GetErrorMessage(
OUString
GetErrorMessage
(
const
RuntimeException
&
re
)
{
Type
t
=
::
getCppuType
(
&
re
);
Type
t
=
cppu
::
UnoType
<
decltype
(
re
)
>::
get
(
);
OUString
message
=
t
.
getTypeName
();
message
+=
re
.
Message
;
...
...
@@ -1374,7 +1374,7 @@ OUString GetErrorMessage( const RuntimeException& re )
OUString
GetErrorMessage
(
const
Exception
&
e
)
{
Type
t
=
::
getCppuType
(
&
e
);
Type
t
=
cppu
::
UnoType
<
decltype
(
e
)
>::
get
(
);
OUString
message
=
t
.
getTypeName
();
message
+=
e
.
Message
;
...
...
cui/source/options/connpoolconfig.cxx
Dosyayı görüntüle @
28c8a529
...
...
@@ -158,7 +158,7 @@ namespace offapp
if
(
pEnabled
)
{
sal_Bool
bEnabled
=
pEnabled
->
GetValue
();
aConnectionPoolRoot
.
setNodeValue
(
getEnablePoolingNodeName
(),
Any
(
&
bEnabled
,
::
getBooleanCppuType
()));
aConnectionPoolRoot
.
setNodeValue
(
getEnablePoolingNodeName
(),
Any
(
&
bEnabled
,
cppu
::
UnoType
<
bool
>::
get
()));
bNeedCommit
=
true
;
}
...
...
@@ -190,7 +190,7 @@ namespace offapp
// set the values
aThisDriverSettings
.
setNodeValue
(
getDriverNameNodeName
(),
makeAny
(
sThisDriverName
));
aThisDriverSettings
.
setNodeValue
(
getEnableNodeName
(),
Any
(
&
aLoop
->
bEnabled
,
::
getBooleanCppuType
()));
aThisDriverSettings
.
setNodeValue
(
getEnableNodeName
(),
Any
(
&
aLoop
->
bEnabled
,
cppu
::
UnoType
<
bool
>::
get
()));
aThisDriverSettings
.
setNodeValue
(
getTimeoutNodeName
(),
makeAny
(
aLoop
->
nTimeoutSeconds
));
}
bNeedCommit
=
true
;
...
...
cui/source/options/optasian.cxx
Dosyayı görüntüle @
28c8a529
...
...
@@ -169,7 +169,7 @@ bool SvxAsianLayoutPage::FillItemSet( SfxItemSet* )
{
Any
aVal
;
sal_Bool
bVal
=
!
m_pCharKerningRB
->
IsChecked
();
aVal
.
setValue
(
&
bVal
,
::
getBooleanCppuType
());
aVal
.
setValue
(
&
bVal
,
cppu
::
UnoType
<
bool
>::
get
());
pImpl
->
xPrSet
->
setPropertyValue
(
sPunct
,
aVal
);
}
}
...
...
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