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
f1d303c6
Kaydet (Commit)
f1d303c6
authored
Ara 02, 2013
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Uninitialized value
Change-Id: I060fb2f8dda4a79b70e2fdf255e95b47b0d5630b
üst
827b44d3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
crsrsh.hxx
sw/inc/crsrsh.hxx
+2
-1
crsrsh.cxx
sw/source/core/crsr/crsrsh.cxx
+4
-5
No files found.
sw/inc/crsrsh.hxx
Dosyayı görüntüle @
f1d303c6
...
...
@@ -230,6 +230,8 @@ private:
bool
m_bMacroExecAllowed
:
1
;
SwFrm
*
m_oldColFrm
;
SW_DLLPRIVATE
void
UpdateCrsr
(
sal_uInt16
eFlags
=
SwCrsrShell
::
SCROLLWIN
|
SwCrsrShell
::
CHKRANGE
,
sal_Bool
bIdleEnd
=
sal_False
);
...
...
@@ -825,7 +827,6 @@ public:
sal_Bool
IsInRightToLeftText
(
const
Point
*
pPt
=
0
)
const
;
void
FirePageChangeEvent
(
sal_uInt16
nOldPage
,
sal_uInt16
nNewPage
);
SwFrm
*
oldColFrm
;
bool
bColumnChange
();
void
FireSectionChangeEvent
(
sal_uInt16
nOldSection
,
sal_uInt16
nNewSection
);
void
FireColumnChangeEvent
(
sal_uInt16
nOldColumn
,
sal_uInt16
nNewColumn
);
...
...
sw/source/core/crsr/crsrsh.cxx
Dosyayı görüntüle @
f1d303c6
...
...
@@ -491,11 +491,11 @@ bool SwCrsrShell::bColumnChange()
}
}
if
(
oldColFrm
==
pCurrCol
)
if
(
m_
oldColFrm
==
pCurrCol
)
return
sal_False
;
else
{
oldColFrm
=
pCurrCol
;
m_
oldColFrm
=
pCurrCol
;
return
sal_True
;
}
}
...
...
@@ -2581,7 +2581,7 @@ SwCrsrShell::SwCrsrShell( SwCrsrShell& rShell, Window *pInitWin )
m_pBoxIdx
(
0
),
m_pBoxPtr
(
0
),
m_nCrsrMove
(
0
),
m_nBasicActionCnt
(
0
),
m_eMvState
(
MV_NONE
),
m_sMarkedListId
(),
m_nMarkedListLevel
(
0
)
m_nMarkedListLevel
(
0
)
,
m_oldColFrm
(
0
)
{
SET_CURR_SHELL
(
this
);
// only keep the position of the current cursor of the copy shell
...
...
@@ -2596,7 +2596,6 @@ SwCrsrShell::SwCrsrShell( SwCrsrShell& rShell, Window *pInitWin )
m_bSetCrsrInReadOnly
=
sal_True
;
m_pVisCrsr
=
new
SwVisCrsr
(
this
);
m_bMacroExecAllowed
=
rShell
.
IsMacroExecAllowed
();
oldColFrm
=
NULL
;
#if defined(ANDROID) || defined(IOS)
HideCrsr
();
...
...
@@ -2611,7 +2610,7 @@ SwCrsrShell::SwCrsrShell( SwDoc& rDoc, Window *pInitWin,
m_pBoxIdx
(
0
),
m_pBoxPtr
(
0
),
m_nCrsrMove
(
0
),
m_nBasicActionCnt
(
0
),
m_eMvState
(
MV_NONE
),
// state for crsr-travelling - GetCrsrOfst
m_sMarkedListId
(),
m_nMarkedListLevel
(
0
)
m_nMarkedListLevel
(
0
)
,
m_oldColFrm
(
0
)
{
SET_CURR_SHELL
(
this
);
// create initial cursor and set it to first content position
...
...
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