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
6e025477
Kaydet (Commit)
6e025477
authored
Şub 12, 2014
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sal_Bool->bool
Change-Id: Ic3883c0d490228ce607ac9296e45306718f03821
üst
ab339269
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
textuno.hxx
sc/inc/textuno.hxx
+7
-7
textuno.cxx
sc/source/ui/unoobj/textuno.cxx
+3
-3
No files found.
sc/inc/textuno.hxx
Dosyayı görüntüle @
6e025477
...
...
@@ -373,10 +373,10 @@ protected:
ScFieldEditEngine
*
pEditEngine
;
SvxEditEngineForwarder
*
pForwarder
;
ScCellEditSource
*
pOriginalSource
;
sal_B
ool
bDataValid
;
sal_B
ool
bInUpdate
;
sal_B
ool
bDirty
;
sal_B
ool
bDoUpdate
;
b
ool
bDataValid
;
b
ool
bInUpdate
;
b
ool
bDirty
;
b
ool
bDoUpdate
;
protected
:
virtual
void
GetCellText
(
const
ScAddress
&
rCellPos
,
OUString
&
rText
);
...
...
@@ -398,9 +398,9 @@ public:
ScDocShell
*
GetDocShell
()
const
{
return
pDocShell
;
}
const
ScAddress
&
GetCellPos
()
const
{
return
aCellPos
;
}
void
SetDirty
(
sal_B
ool
bValue
)
{
bDirty
=
bValue
;
}
sal_B
ool
IsDirty
()
const
{
return
bDirty
;
}
void
SetDoUpdate
(
sal_B
ool
bValue
)
{
bDoUpdate
=
bValue
;
}
void
SetDirty
(
b
ool
bValue
)
{
bDirty
=
bValue
;
}
b
ool
IsDirty
()
const
{
return
bDirty
;
}
void
SetDoUpdate
(
b
ool
bValue
)
{
bDoUpdate
=
bValue
;
}
};
class
ScCellTextObj
:
public
ScCellTextData
,
public
SvxUnoText
...
...
sc/source/ui/unoobj/textuno.cxx
Dosyayı görüntüle @
6e025477
...
...
@@ -922,7 +922,7 @@ ScCellTextData::ScCellTextData(ScDocShell* pDocSh, const ScAddress& rP) :
bDataValid
(
false
),
bInUpdate
(
false
),
bDirty
(
false
),
bDoUpdate
(
sal_T
rue
)
bDoUpdate
(
t
rue
)
{
if
(
pDocShell
)
pDocShell
->
GetDocument
()
->
AddUnoObject
(
*
this
);
...
...
@@ -1034,7 +1034,7 @@ void ScCellTextData::UpdateData()
// during the own UpdateData call, bDataValid must not be reset,
// or things like attributes after the text would be lost
// (are not stored in the cell)
bInUpdate
=
sal_T
rue
;
// prevents bDataValid from being reset
bInUpdate
=
t
rue
;
// prevents bDataValid from being reset
pDocShell
->
GetDocFunc
().
PutData
(
aCellPos
,
*
pEditEngine
,
true
);
// always as text
bInUpdate
=
false
;
...
...
@@ -1042,7 +1042,7 @@ void ScCellTextData::UpdateData()
}
}
else
bDirty
=
sal_T
rue
;
bDirty
=
t
rue
;
}
void
ScCellTextData
::
Notify
(
SfxBroadcaster
&
,
const
SfxHint
&
rHint
)
...
...
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