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
ca015ac1
Kaydet (Commit)
ca015ac1
authored
Ara 02, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert formula::FormEditData from xub_StrLen->sal_Int32
Change-Id: I0127079ef3ee6bde8e36f2a83ef1f568b9f15568
üst
c310019e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
formula.cxx
formula/source/ui/dlg/formula.cxx
+1
-1
formdata.hxx
include/formula/formdata.hxx
+3
-3
No files found.
formula/source/ui/dlg/formula.cxx
Dosyayı görüntüle @
ca015ac1
...
...
@@ -371,7 +371,7 @@ void FormulaDlg_Impl::StoreFormEditData(FormEditData* pData)
{
if
(
pData
)
// it won't be destroyed via Close
{
pData
->
SetFStart
(
(
xub_StrLen
)
pMEdit
->
GetSelection
().
Min
());
pData
->
SetFStart
(
pMEdit
->
GetSelection
().
Min
());
pData
->
SetSelection
(
pMEdit
->
GetSelection
());
if
(
aTabCtrl
.
GetCurPageId
()
==
TP_FUNCTION
)
...
...
include/formula/formdata.hxx
Dosyayı görüntüle @
ca015ac1
...
...
@@ -37,7 +37,7 @@ public:
sal_Bool
HasParent
()
const
{
return
pParent
!=
NULL
;
}
inline
sal_uInt16
GetMode
()
const
{
return
nMode
;
}
inline
xub_StrLen
GetFStart
()
const
{
return
nFStart
;
}
inline
sal_Int32
GetFStart
()
const
{
return
nFStart
;
}
inline
sal_uInt16
GetCatSel
()
const
{
return
nCatSel
;
}
inline
sal_uInt16
GetFuncSel
()
const
{
return
nFuncSel
;
}
inline
sal_uInt16
GetOffset
()
const
{
return
nOffset
;
}
...
...
@@ -48,7 +48,7 @@ public:
inline
const
Selection
&
GetSelection
()
const
{
return
aSelection
;}
inline
void
SetMode
(
sal_uInt16
nNew
)
{
nMode
=
nNew
;
}
inline
void
SetFStart
(
xub_StrLen
nNew
)
{
nFStart
=
nNew
;
}
inline
void
SetFStart
(
sal_Int32
nNew
)
{
nFStart
=
nNew
;
}
inline
void
SetCatSel
(
sal_uInt16
nNew
)
{
nCatSel
=
nNew
;
}
inline
void
SetFuncSel
(
sal_uInt16
nNew
)
{
nFuncSel
=
nNew
;
}
inline
void
SetOffset
(
sal_uInt16
nNew
)
{
nOffset
=
nNew
;
}
...
...
@@ -65,7 +65,7 @@ protected:
FormEditData
*
pParent
;
// fuer Verschachtelung
private
:
sal_uInt16
nMode
;
// enum ScFormulaDlgMode
xub_StrLen
nFStart
;
sal_Int32
nFStart
;
sal_uInt16
nCatSel
;
sal_uInt16
nFuncSel
;
sal_uInt16
nOffset
;
...
...
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