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
fe3b2912
Kaydet (Commit)
fe3b2912
authored
Agu 16, 2014
tarafından
Thomas Arnhold
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
warning C4800: 'unsigned long' : forcing value to bool 'true' or 'false'
Change-Id: Iea71e791a760b38448a89294ab4136f815b8932c
üst
6c54831d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
docfilt.hxx
include/sfx2/docfilt.hxx
+7
-7
No files found.
include/sfx2/docfilt.hxx
Dosyayı görüntüle @
fe3b2912
...
...
@@ -77,13 +77,13 @@ public:
const
OUString
&
rServiceName
);
~
SfxFilter
();
bool
IsAllowedAsTemplate
()
const
{
return
nFormatType
&
SFX_FILTER_TEMPLATE
;
}
bool
IsOwnFormat
()
const
{
return
nFormatType
&
SFX_FILTER_OWN
;
}
bool
IsOwnTemplateFormat
()
const
{
return
nFormatType
&
SFX_FILTER_TEMPLATEPATH
;
}
bool
IsAlienFormat
()
const
{
return
nFormatType
&
SFX_FILTER_ALIEN
;
}
bool
CanImport
()
const
{
return
nFormatType
&
SFX_FILTER_IMPORT
;
}
bool
CanExport
()
const
{
return
nFormatType
&
SFX_FILTER_EXPORT
;
}
bool
IsInternal
()
const
{
return
nFormatType
&
SFX_FILTER_INTERNAL
;
}
bool
IsAllowedAsTemplate
()
const
{
return
(
nFormatType
&
SFX_FILTER_TEMPLATE
)
!=
0
;
}
bool
IsOwnFormat
()
const
{
return
(
nFormatType
&
SFX_FILTER_OWN
)
!=
0
;
}
bool
IsOwnTemplateFormat
()
const
{
return
(
nFormatType
&
SFX_FILTER_TEMPLATEPATH
)
!=
0
;
}
bool
IsAlienFormat
()
const
{
return
(
nFormatType
&
SFX_FILTER_ALIEN
)
!=
0
;
}
bool
CanImport
()
const
{
return
(
nFormatType
&
SFX_FILTER_IMPORT
)
!=
0
;
}
bool
CanExport
()
const
{
return
(
nFormatType
&
SFX_FILTER_EXPORT
)
!=
0
;
}
bool
IsInternal
()
const
{
return
(
nFormatType
&
SFX_FILTER_INTERNAL
)
!=
0
;
}
SfxFilterFlags
GetFilterFlags
()
const
{
return
nFormatType
;
}
const
OUString
&
GetFilterName
()
const
{
return
maFilterName
;
}
const
OUString
&
GetMimeType
()
const
{
return
aMimeType
;
}
...
...
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