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
3c4779bd
Kaydet (Commit)
3c4779bd
authored
May 01, 2011
tarafından
Francois Tigeot
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove unused function IsLongNameOnFAT()
üst
c8a9db7a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
41 deletions
+0
-41
fsys.hxx
tools/inc/tools/fsys.hxx
+0
-1
dirent.cxx
tools/source/fsys/dirent.cxx
+0
-40
No files found.
tools/inc/tools/fsys.hxx
Dosyayı görüntüle @
3c4779bd
...
@@ -296,7 +296,6 @@ public:
...
@@ -296,7 +296,6 @@ public:
FSysPathStyle
eParser
=
FSYS_STYLE_HOST
);
FSysPathStyle
eParser
=
FSYS_STYLE_HOST
);
~
DirEntry
();
~
DirEntry
();
sal_Bool
IsLongNameOnFAT
()
const
;
sal_Bool
IsCaseSensitive
(
FSysPathStyle
eFormatter
=
FSYS_STYLE_HOST
)
const
;
sal_Bool
IsCaseSensitive
(
FSysPathStyle
eFormatter
=
FSYS_STYLE_HOST
)
const
;
sal_uIntPtr
GetError
()
const
{
return
nError
;
}
sal_uIntPtr
GetError
()
const
{
return
nError
;
}
...
...
tools/source/fsys/dirent.cxx
Dosyayı görüntüle @
3c4779bd
...
@@ -2908,46 +2908,6 @@ sal_Bool DirEntry::IsRFSAvailable()
...
@@ -2908,46 +2908,6 @@ sal_Bool DirEntry::IsRFSAvailable()
return
sal_False
;
return
sal_False
;
}
}
/*************************************************************************
|*
|* IsLongNameOnFAT()
|*
|* Beschreibung ?berpr?ft , ob das DirEntry einen langen
|* Filenamen auf einer FAT-Partition enth?lt (EAs).
|* (eigentlich nur f?r OS2 interessant)
|*
*************************************************************************/
sal_Bool
DirEntry
::
IsLongNameOnFAT
()
const
{
// FAT-System?
DirEntry
aTempDirEntry
(
*
this
);
aTempDirEntry
.
ToAbs
();
if
(
DirEntry
::
GetPathStyle
(
aTempDirEntry
.
GetDevice
().
GetName
().
GetChar
(
0
))
!=
FSYS_STYLE_FAT
)
{
return
sal_False
;
// nein, also false
}
// DirEntry-Kette auf lange Dateinamen pr?fen
for
(
sal_uInt16
iLevel
=
this
->
Level
();
iLevel
>
0
;
iLevel
--
)
{
const
DirEntry
&
rEntry
=
(
const
DirEntry
&
)
(
*
this
)[
iLevel
-
1
];
String
aBase
(
rEntry
.
GetBase
()
);
String
aExtension
(
rEntry
.
GetExtension
()
);
if
(
aBase
.
Len
()
>
8
)
// Name > 8?
{
return
sal_True
;
}
if
(
aExtension
.
Len
()
>
3
)
// Extension > 3?
{
return
sal_True
;
}
}
return
sal_False
;
}
//========================================================================
//========================================================================
#if defined(DBG_UTIL)
#if defined(DBG_UTIL)
...
...
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