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
c399630f
Kaydet (Commit)
c399630f
authored
Nis 11, 2016
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
clang-tidy performance-unnecessary-value-param in svtools
Change-Id: I6360a780aac9a387fed3a1c9a086196dbba0b089
üst
76bff82c
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
9 additions
and
9 deletions
+9
-9
headbar.hxx
include/svtools/headbar.hxx
+1
-1
unoimap.hxx
include/svtools/unoimap.hxx
+1
-1
tablecontrol.hxx
svtools/inc/table/tablecontrol.hxx
+1
-1
headbar.cxx
svtools/source/control/headbar.cxx
+1
-1
dialogcontrolling.cxx
svtools/source/misc/dialogcontrolling.cxx
+1
-1
tablecontrol.cxx
svtools/source/table/tablecontrol.cxx
+1
-1
tablecontrol_impl.cxx
svtools/source/table/tablecontrol_impl.cxx
+1
-1
tablecontrol_impl.hxx
svtools/source/table/tablecontrol_impl.hxx
+1
-1
unoimap.cxx
svtools/source/uno/unoimap.cxx
+1
-1
No files found.
include/svtools/headbar.hxx
Dosyayı görüntüle @
c399630f
...
...
@@ -335,7 +335,7 @@ public:
/** Creates and returns the accessible object of the header bar. */
virtual
css
::
uno
::
Reference
<
css
::
accessibility
::
XAccessible
>
CreateAccessible
()
override
;
void
SetAccessible
(
c
ss
::
uno
::
Reference
<
css
::
accessibility
::
XAccessible
>
);
void
SetAccessible
(
c
onst
css
::
uno
::
Reference
<
css
::
accessibility
::
XAccessible
>&
);
virtual
css
::
uno
::
Reference
<
css
::
awt
::
XWindowPeer
>
GetComponentInterface
(
bool
bCreate
)
override
;
};
...
...
include/svtools/unoimap.hxx
Dosyayı görüntüle @
c399630f
...
...
@@ -32,7 +32,7 @@ SVT_DLLPUBLIC css::uno::Reference< css::uno::XInterface > SvUnoImageMapPolygonOb
SVT_DLLPUBLIC
css
::
uno
::
Reference
<
css
::
uno
::
XInterface
>
SvUnoImageMap_createInstance
(
const
SvEventDescription
*
pSupportedMacroItems
);
SVT_DLLPUBLIC
css
::
uno
::
Reference
<
css
::
uno
::
XInterface
>
SvUnoImageMap_createInstance
(
const
ImageMap
&
rMap
,
const
SvEventDescription
*
pSupportedMacroItems
);
SVT_DLLPUBLIC
bool
SvUnoImageMap_fillImageMap
(
c
ss
::
uno
::
Reference
<
css
::
uno
::
XInterface
>
xImageMap
,
ImageMap
&
rMap
);
SVT_DLLPUBLIC
bool
SvUnoImageMap_fillImageMap
(
c
onst
css
::
uno
::
Reference
<
css
::
uno
::
XInterface
>&
xImageMap
,
ImageMap
&
rMap
);
#endif
...
...
svtools/inc/table/tablecontrol.hxx
Dosyayı görüntüle @
c399630f
...
...
@@ -67,7 +67,7 @@ namespace svt { namespace table
virtual
void
dispose
()
override
;
/// sets a new table model
void
SetModel
(
PTableModel
_pModel
);
void
SetModel
(
const
PTableModel
&
_pModel
);
/// retrieves the current table model
PTableModel
GetModel
()
const
;
...
...
svtools/source/control/headbar.cxx
Dosyayı görüntüle @
c399630f
...
...
@@ -1389,7 +1389,7 @@ css::uno::Reference< css::accessibility::XAccessible > HeaderBar::CreateAccessib
return
mxAccessible
;
}
void
HeaderBar
::
SetAccessible
(
c
ss
::
uno
::
Reference
<
css
::
accessibility
::
XAccessible
>
_xAccessible
)
void
HeaderBar
::
SetAccessible
(
c
onst
css
::
uno
::
Reference
<
css
::
accessibility
::
XAccessible
>&
_xAccessible
)
{
mxAccessible
=
_xAccessible
;
}
...
...
svtools/source/misc/dialogcontrolling.cxx
Dosyayı görüntüle @
c399630f
...
...
@@ -53,7 +53,7 @@ namespace svt
PWindowEventFilter
pEventFilter
;
PWindowOperator
pOperator
;
DialogController_Data
(
vcl
::
Window
&
_xInstigator
,
const
PWindowEventFilter
_pEventFilter
,
const
PWindowOperator
_pOperator
)
DialogController_Data
(
vcl
::
Window
&
_xInstigator
,
const
PWindowEventFilter
&
_pEventFilter
,
const
PWindowOperator
&
_pOperator
)
:
xInstigator
(
&
_xInstigator
)
,
pEventFilter
(
_pEventFilter
)
,
pOperator
(
_pOperator
)
...
...
svtools/source/table/tablecontrol.cxx
Dosyayı görüntüle @
c399630f
...
...
@@ -163,7 +163,7 @@ namespace svt { namespace table
}
void
TableControl
::
SetModel
(
PTableModel
_pModel
)
void
TableControl
::
SetModel
(
const
PTableModel
&
_pModel
)
{
m_pImpl
->
setModel
(
_pModel
);
}
...
...
svtools/source/table/tablecontrol_impl.cxx
Dosyayı görüntüle @
c399630f
...
...
@@ -263,7 +263,7 @@ namespace svt { namespace table
DELETEZ
(
m_pSelEngine
);
}
void
TableControl_Impl
::
setModel
(
PTableModel
_pModel
)
void
TableControl_Impl
::
setModel
(
const
PTableModel
&
_pModel
)
{
SuppressCursor
aHideCursor
(
*
this
);
...
...
svtools/source/table/tablecontrol_impl.hxx
Dosyayı görüntüle @
c399630f
...
...
@@ -134,7 +134,7 @@ namespace svt { namespace table
IAccessibleTableControl
*
m_pAccessibleTable
;
public
:
void
setModel
(
PTableModel
_pModel
);
void
setModel
(
const
PTableModel
&
_pModel
);
inline
const
PTableInputHandler
&
getInputHandler
()
const
{
return
m_pInputHandler
;
}
...
...
svtools/source/uno/unoimap.cxx
Dosyayı görüntüle @
c399630f
...
...
@@ -760,7 +760,7 @@ Reference< XInterface > SvUnoImageMap_createInstance( const ImageMap& rMap, cons
return
static_cast
<
XWeak
*>
(
new
SvUnoImageMap
(
rMap
,
pSupportedMacroItems
));
}
bool
SvUnoImageMap_fillImageMap
(
Reference
<
XInterface
>
xImageMap
,
ImageMap
&
rMap
)
bool
SvUnoImageMap_fillImageMap
(
const
Reference
<
XInterface
>&
xImageMap
,
ImageMap
&
rMap
)
{
SvUnoImageMap
*
pUnoImageMap
=
SvUnoImageMap
::
getImplementation
(
xImageMap
);
if
(
nullptr
==
pUnoImageMap
)
...
...
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