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
4cc0dfb2
Kaydet (Commit)
4cc0dfb2
authored
Eki 17, 2011
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
WaE: unsafe mix of type 'bool' and type foo in operation
üst
0f96c763
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
acredlin.cxx
sc/source/ui/miscdlgs/acredlin.cxx
+2
-2
warnbox.cxx
sc/source/ui/miscdlgs/warnbox.cxx
+1
-1
No files found.
sc/source/ui/miscdlgs/acredlin.cxx
Dosyayı görüntüle @
4cc0dfb2
...
...
@@ -1717,8 +1717,8 @@ IMPL_LINK( ScAcceptChgDlg, UpdateSelectionHdl, Timer*, EMPTYARG )
ScRedlinData
*
pEntryData
=
(
ScRedlinData
*
)
pEntry
->
GetUserData
();
if
(
pEntryData
)
{
bRejectFlag
&=
pEntryData
->
bIsRejectable
;
bAcceptFlag
&=
pEntryData
->
bIsAcceptable
;
bRejectFlag
&=
(
bool
)
pEntryData
->
bIsRejectable
;
bAcceptFlag
&=
(
bool
)
pEntryData
->
bIsAcceptable
;
const
ScChangeAction
*
pScChangeAction
=
(
ScChangeAction
*
)
pEntryData
->
pData
;
if
(
pScChangeAction
&&
(
pScChangeAction
->
GetType
()
!=
SC_CAT_DELETE_TABS
)
&&
...
...
sc/source/ui/miscdlgs/warnbox.cxx
Dosyayı görüntüle @
4cc0dfb2
...
...
@@ -79,7 +79,7 @@ ScReplaceWarnBox::ScReplaceWarnBox( Window* pParent ) :
bool
ScReplaceWarnBox
::
IsDialogEnabled
()
{
return
SC_MOD
()
->
GetInputOptions
().
GetReplaceCellsWarn
(
)
==
true
;
return
((
bool
)
SC_MOD
()
->
GetInputOptions
().
GetReplaceCellsWarn
()
)
==
true
;
}
void
ScReplaceWarnBox
::
DisableDialog
()
...
...
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