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
83b07265
Kaydet (Commit)
83b07265
authored
Tem 13, 2015
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bin two unused fields
Change-Id: If06753320d34e0e677c9456ddb47bfd3636e8a66
üst
3131205c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
16 deletions
+0
-16
field.hxx
include/vcl/field.hxx
+0
-2
field2.cxx
vcl/source/control/field2.cxx
+0
-14
No files found.
include/vcl/field.hxx
Dosyayı görüntüle @
83b07265
...
...
@@ -307,7 +307,6 @@ private:
Date
maLastDate
;
Date
maMin
;
Date
maMax
;
Date
maCorrectedDate
;
bool
mbLongFormat
;
bool
mbShowDateCentury
;
sal_uInt16
mnDateFormat
;
...
...
@@ -400,7 +399,6 @@ private:
tools
::
Time
maLastTime
;
tools
::
Time
maMin
;
tools
::
Time
maMax
;
tools
::
Time
maCorrectedTime
;
TimeFieldFormat
meFormat
;
sal_uInt16
mnTimeFormat
;
bool
mbDuration
;
...
...
vcl/source/control/field2.cxx
Dosyayı görüntüle @
83b07265
...
...
@@ -1117,14 +1117,8 @@ bool DateFormatter::ImplDateReformat( const OUString& rStr, OUString& rOutStr, c
if
(
GetErrorHdl
().
IsSet
()
&&
(
aDate
!=
aTempDate
)
)
{
maCorrectedDate
=
aTempDate
;
if
(
!
GetErrorHdl
().
Call
(
this
)
)
{
maCorrectedDate
=
Date
(
Date
::
SYSTEM
);
return
false
;
}
else
maCorrectedDate
=
Date
(
Date
::
SYSTEM
);
}
rOutStr
=
ImplGetDateAsText
(
aTempDate
,
rSettings
);
...
...
@@ -1418,7 +1412,6 @@ DateFormatter::DateFormatter() :
maLastDate
(
0
),
maMin
(
1
,
1
,
1900
),
maMax
(
31
,
12
,
2200
),
maCorrectedDate
(
Date
::
SYSTEM
),
mbEnforceValidValue
(
true
)
{
ImplInit
();
...
...
@@ -2169,14 +2162,8 @@ bool TimeFormatter::ImplTimeReformat( const OUString& rStr, OUString& rOutStr )
if
(
GetErrorHdl
().
IsSet
()
&&
(
aTime
!=
aTempTime
)
)
{
maCorrectedTime
=
aTempTime
;
if
(
!
GetErrorHdl
().
Call
(
this
)
)
{
maCorrectedTime
=
tools
::
Time
(
tools
::
Time
::
SYSTEM
);
return
false
;
}
else
maCorrectedTime
=
tools
::
Time
(
tools
::
Time
::
SYSTEM
);
}
bool
bSecond
=
false
;
...
...
@@ -2311,7 +2298,6 @@ TimeFormatter::TimeFormatter() :
maLastTime
(
0
,
0
),
maMin
(
0
,
0
),
maMax
(
23
,
59
,
59
,
999999999
),
maCorrectedTime
(
tools
::
Time
::
SYSTEM
),
mbEnforceValidValue
(
true
),
maFieldTime
(
0
,
0
)
{
...
...
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