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
9503a695
Kaydet (Commit)
9503a695
authored
Haz 29, 2016
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove unused template parameter
Change-Id: I3b1f54f88351512cbe2e555f9ca9c1c0dcc2c098
üst
50bf96d3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
binding.cxx
forms/source/xforms/binding.cxx
+1
-1
model.cxx
forms/source/xforms/model.cxx
+1
-1
propertysetbase.hxx
forms/source/xforms/propertysetbase.hxx
+1
-1
submission.cxx
forms/source/xforms/submission.cxx
+1
-1
No files found.
forms/source/xforms/binding.cxx
Dosyayı görüntüle @
9503a695
...
...
@@ -1281,7 +1281,7 @@ css::uno::Reference<css::util::XCloneable> SAL_CALL Binding::createClone()
#define REGISTER_BOOL_PROPERTY_RO( property ) \
registerProperty( PROPERTY_RO( property, sal_Bool ), \
new BooleanPropertyAccessor< Binding
, bool
>( this, nullptr, &Binding::get##property ) );
new BooleanPropertyAccessor< Binding >( this, nullptr, &Binding::get##property ) );
void
Binding
::
initializePropertySet
()
{
...
...
forms/source/xforms/model.cxx
Dosyayı görüntüle @
9503a695
...
...
@@ -631,7 +631,7 @@ css::uno::Reference<css::container::XSet> Model::getSubmissions()
#define REGISTER_BOOL_PROPERTY( property ) \
registerProperty( PROPERTY( property, sal_Bool ), \
new BooleanPropertyAccessor< Model
, bool
>( this, &Model::set##property, &Model::get##property ) );
new BooleanPropertyAccessor< Model >( this, &Model::set##property, &Model::get##property ) );
void
Model
::
initializePropertySet
()
{
...
...
forms/source/xforms/propertysetbase.hxx
Dosyayı görüntüle @
9503a695
...
...
@@ -124,7 +124,7 @@ public:
/** helper class for implementing non-UNO accessors to a boolean property
*/
template
<
typename
CLASS
,
typename
DUMMY
>
template
<
typename
CLASS
>
class
BooleanPropertyAccessor
:
public
GenericPropertyAccessor
<
CLASS
,
bool
...
...
forms/source/xforms/submission.cxx
Dosyayı görüntüle @
9503a695
...
...
@@ -327,7 +327,7 @@ Model* Submission::getModelImpl() const
#define REGISTER_PROPERTY_BOOL( property ) \
registerProperty( PROPERTY( property, bool ), \
new BooleanPropertyAccessor< Submission
, bool
>( this, &Submission::set##property, &Submission::get##property ) );
new BooleanPropertyAccessor< Submission >( this, &Submission::set##property, &Submission::get##property ) );
void
Submission
::
initializePropertySet
()
{
...
...
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