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
2c0e1917
Kaydet (Commit)
2c0e1917
authored
Mar 05, 2015
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
V801: Decreased performance
Change-Id: I48c716d87ce3e46f61393ae140bf2e05d9fd6241
üst
db041f15
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
10 deletions
+9
-10
viewuno.hxx
sc/inc/viewuno.hxx
+2
-3
formulagroupcl.cxx
sc/source/core/opencl/formulagroupcl.cxx
+1
-1
viewuno.cxx
sc/source/ui/unoobj/viewuno.cxx
+2
-2
drawvie4.cxx
sc/source/ui/view/drawvie4.cxx
+2
-2
xmlsignaturehelper2.cxx
xmlsecurity/source/helper/xmlsignaturehelper2.cxx
+1
-1
xmlsignaturehelper2.hxx
xmlsecurity/source/helper/xmlsignaturehelper2.hxx
+1
-1
No files found.
sc/inc/viewuno.hxx
Dosyayı görüntüle @
2c0e1917
...
...
@@ -390,9 +390,8 @@ public:
sal_Int8
>&
aIdentifier
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
static
const
com
::
sun
::
star
::
uno
::
Sequence
<
sal_Int8
>&
getUnoTunnelId
();
static
ScTabViewObj
*
getImplementation
(
const
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
uno
::
XInterface
>
xObj
);
static
const
css
::
uno
::
Sequence
<
sal_Int8
>&
getUnoTunnelId
();
static
ScTabViewObj
*
getImplementation
(
const
css
::
uno
::
Reference
<
css
::
uno
::
XInterface
>&
rObj
);
// XTypeProvider
virtual
::
com
::
sun
::
star
::
uno
::
Sequence
<
::
com
::
sun
::
star
::
uno
::
Type
>
SAL_CALL
getTypes
()
...
...
sc/source/core/opencl/formulagroupcl.cxx
Dosyayı görüntüle @
2c0e1917
...
...
@@ -135,7 +135,7 @@ std::string StackVarEnumToString(StackVar const e)
}
#ifdef SAL_DETAIL_ENABLE_LOG_INFO
std
::
string
linenumberify
(
const
std
::
string
s
)
std
::
string
linenumberify
(
const
std
::
string
&
s
)
{
std
::
stringstream
ss
;
int
linenumber
=
1
;
...
...
sc/source/ui/unoobj/viewuno.cxx
Dosyayı görüntüle @
2c0e1917
...
...
@@ -2231,10 +2231,10 @@ const uno::Sequence<sal_Int8>& ScTabViewObj::getUnoTunnelId()
return
theScTabViewObjUnoTunnelId
::
get
().
getSeq
();
}
ScTabViewObj
*
ScTabViewObj
::
getImplementation
(
const
uno
::
Reference
<
uno
::
XInterface
>
xObj
)
ScTabViewObj
*
ScTabViewObj
::
getImplementation
(
const
uno
::
Reference
<
uno
::
XInterface
>&
rObj
)
{
ScTabViewObj
*
pRet
=
NULL
;
uno
::
Reference
<
lang
::
XUnoTunnel
>
xUT
(
xObj
,
uno
::
UNO_QUERY
);
uno
::
Reference
<
lang
::
XUnoTunnel
>
xUT
(
rObj
,
uno
::
UNO_QUERY
);
if
(
xUT
.
is
())
pRet
=
reinterpret_cast
<
ScTabViewObj
*>
(
sal
::
static_int_cast
<
sal_IntPtr
>
(
xUT
->
getSomething
(
getUnoTunnelId
())));
return
pRet
;
...
...
sc/source/ui/view/drawvie4.cxx
Dosyayı görüntüle @
2c0e1917
...
...
@@ -164,9 +164,9 @@ void getRangeFromDataSource( uno::Reference< chart2::data::XDataSource > xDataSo
}
}
void
getRangeFromErrorBar
(
const
uno
::
Reference
<
chart2
::
XChartDocument
>
x
ChartDoc
,
std
::
vector
<
OUString
>&
rRangeRep
)
void
getRangeFromErrorBar
(
const
uno
::
Reference
<
chart2
::
XChartDocument
>
&
r
ChartDoc
,
std
::
vector
<
OUString
>&
rRangeRep
)
{
uno
::
Reference
<
chart2
::
XDiagram
>
xDiagram
=
x
ChartDoc
->
getFirstDiagram
();
uno
::
Reference
<
chart2
::
XDiagram
>
xDiagram
=
r
ChartDoc
->
getFirstDiagram
();
if
(
!
xDiagram
.
is
())
return
;
...
...
xmlsecurity/source/helper/xmlsignaturehelper2.cxx
Dosyayı görüntüle @
2c0e1917
...
...
@@ -32,7 +32,7 @@
using
namespace
com
::
sun
::
star
;
ImplXMLSignatureListener
::
ImplXMLSignatureListener
(
const
Link
&
rCreationResultListenerListener
,
const
Link
rVerifyResultListenerListener
,
const
Link
rStartSignatureElement
)
ImplXMLSignatureListener
::
ImplXMLSignatureListener
(
const
Link
&
rCreationResultListenerListener
,
const
Link
&
rVerifyResultListenerListener
,
const
Link
&
rStartSignatureElement
)
{
maCreationResultListenerListener
=
rCreationResultListenerListener
;
maVerifyResultListenerListener
=
rVerifyResultListenerListener
;
...
...
xmlsecurity/source/helper/xmlsignaturehelper2.hxx
Dosyayı görüntüle @
2c0e1917
...
...
@@ -57,7 +57,7 @@ private:
com
::
sun
::
star
::
xml
::
sax
::
XDocumentHandler
>
m_xNextHandler
;
public
:
ImplXMLSignatureListener
(
const
Link
&
rCreationResultListenerListener
,
const
Link
rVerifyResultListenerListener
,
const
Link
rStartVerifySignatureElement
);
ImplXMLSignatureListener
(
const
Link
&
rCreationResultListenerListener
,
const
Link
&
rVerifyResultListenerListener
,
const
Link
&
rStartVerifySignatureElement
);
virtual
~
ImplXMLSignatureListener
();
void
setNextHandler
(
com
::
sun
::
star
::
uno
::
Reference
<
...
...
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