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
eed249f5
Kaydet (Commit)
eed249f5
authored
Ock 18, 2013
tarafından
Takeshi Abe
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sal_Bool to bool
Change-Id: I36603ac94b190a67b61b63b5ae0d981c09fcb270
üst
8600bc24
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
25 additions
and
25 deletions
+25
-25
swdtflvr.cxx
sw/source/ui/dochdl/swdtflvr.cxx
+8
-8
edtdd.cxx
sw/source/ui/docvw/edtdd.cxx
+10
-10
edtwin.cxx
sw/source/ui/docvw/edtwin.cxx
+0
-0
edtwin.hxx
sw/source/ui/inc/edtwin.hxx
+3
-3
view1.cxx
sw/source/ui/uiview/view1.cxx
+1
-1
svapp.hxx
vcl/inc/vcl/svapp.hxx
+1
-1
svapp.cxx
vcl/source/app/svapp.cxx
+2
-2
No files found.
sw/source/ui/dochdl/swdtflvr.cxx
Dosyayı görüntüle @
eed249f5
...
...
@@ -114,9 +114,9 @@
#include <swserv.hxx>
#include <switerator.hxx>
extern
sal_B
ool
bFrmDrag
;
extern
sal_B
ool
bDDINetAttr
;
extern
sal_B
ool
bExecuteDrag
;
extern
b
ool
bFrmDrag
;
extern
b
ool
bDDINetAttr
;
extern
b
ool
bExecuteDrag
;
#define OLESIZE 11905 - 2 * lMinBorder, 6 * MM50
...
...
@@ -1940,7 +1940,7 @@ void SwTransferable::SetSelInShell( SwWrtShell& rSh, sal_Bool bSelectFrm,
{
rSh
.
HideCrsr
();
rSh
.
EnterSelFrmMode
(
pPt
);
bFrmDrag
=
sal_T
rue
;
bFrmDrag
=
t
rue
;
}
}
}
...
...
@@ -1951,7 +1951,7 @@ void SwTransferable::SetSelInShell( SwWrtShell& rSh, sal_Bool bSelectFrm,
rSh
.
UnSelectFrm
();
rSh
.
LeaveSelFrmMode
();
rSh
.
GetView
().
GetEditWin
().
StopInsFrm
();
bFrmDrag
=
sal_F
alse
;
bFrmDrag
=
f
alse
;
}
else
if
(
rSh
.
GetView
().
GetDrawFuncPtr
()
)
rSh
.
GetView
().
GetEditWin
().
StopInsFrm
();
...
...
@@ -3142,7 +3142,7 @@ int SwTransferable::PrivateDrop( SwWrtShell& rSh, const Point& rDragPt,
{
rSh
.
HideCrsr
();
rSh
.
EnterSelFrmMode
(
&
rDragPt
);
bFrmDrag
=
sal_T
rue
;
bFrmDrag
=
t
rue
;
}
const
int
nSelection
=
rSh
.
GetSelectionType
();
...
...
@@ -3164,7 +3164,7 @@ int SwTransferable::PrivateDrop( SwWrtShell& rSh, const Point& rDragPt,
rSh
.
LeaveSelFrmMode
();
rSh
.
UnSelectFrm
();
rSh
.
ShowCrsr
();
bFrmDrag
=
sal_F
alse
;
bFrmDrag
=
f
alse
;
}
}
}
...
...
@@ -3270,7 +3270,7 @@ int SwTransferable::PrivateDrop( SwWrtShell& rSh, const Point& rDragPt,
// is there an URL attribute at the insert point? Then replace that,
// so simply put up a selection?
rSh
.
DelINetAttrWithText
();
bDDINetAttr
=
sal_T
rue
;
bDDINetAttr
=
t
rue
;
}
if
(
rSrcSh
.
IsSelFrmMode
()
)
...
...
sw/source/ui/docvw/edtdd.cxx
Dosyayı görüntüle @
eed249f5
...
...
@@ -45,24 +45,24 @@ using namespace ::com::sun::star;
// no include "dbgoutsw.hxx" here!!!!!!
extern
bool
bNoInterrupt
;
extern
sal_B
ool
bFrmDrag
;
extern
sal_B
ool
bDDTimerStarted
;
extern
b
ool
bFrmDrag
;
extern
b
ool
bDDTimerStarted
;
sal_Bool
bExecuteDrag
=
sal_F
alse
;
bool
bExecuteDrag
=
f
alse
;
void
SwEditWin
::
StartDDTimer
()
{
aTimer
.
SetTimeoutHdl
(
LINK
(
this
,
SwEditWin
,
DDHandler
));
aTimer
.
SetTimeout
(
480
);
aTimer
.
Start
();
bDDTimerStarted
=
sal_T
rue
;
bDDTimerStarted
=
t
rue
;
}
void
SwEditWin
::
StopDDTimer
(
SwWrtShell
*
pSh
,
const
Point
&
rPt
)
{
aTimer
.
Stop
();
bDDTimerStarted
=
sal_F
alse
;
bDDTimerStarted
=
f
alse
;
if
(
!
pSh
->
IsSelFrmMode
())
pSh
->
SetCursor
(
&
rPt
,
false
);
aTimer
.
SetTimeoutHdl
(
LINK
(
this
,
SwEditWin
,
TimerHandler
));
...
...
@@ -118,8 +118,8 @@ void SwEditWin::StartDrag( sal_Int8 /*nAction*/, const Point& rPosPixel )
{
bMBPressed
=
sal_False
;
ReleaseMouse
();
bFrmDrag
=
sal_F
alse
;
bExecuteDrag
=
sal_T
rue
;
bFrmDrag
=
f
alse
;
bExecuteDrag
=
t
rue
;
SwEditWin
::
nDDStartPosY
=
aDocPos
.
Y
();
SwEditWin
::
nDDStartPosX
=
aDocPos
.
X
();
aMovePos
=
aDocPos
;
...
...
@@ -483,16 +483,16 @@ sal_Int8 SwEditWin::AcceptDrop( const AcceptDropEvent& rEvt )
IMPL_LINK_NOARG
(
SwEditWin
,
DDHandler
)
{
bDDTimerStarted
=
sal_F
alse
;
bDDTimerStarted
=
f
alse
;
aTimer
.
Stop
();
aTimer
.
SetTimeout
(
240
);
bMBPressed
=
sal_False
;
ReleaseMouse
();
bFrmDrag
=
sal_F
alse
;
bFrmDrag
=
f
alse
;
if
(
rView
.
GetViewFrame
()
)
{
bExecuteDrag
=
sal_T
rue
;
bExecuteDrag
=
t
rue
;
StartExecuteDrag
();
}
return
0
;
...
...
sw/source/ui/docvw/edtwin.cxx
Dosyayı görüntüle @
eed249f5
This diff is collapsed.
Click to expand it.
sw/source/ui/inc/edtwin.hxx
Dosyayı görüntüle @
eed249f5
...
...
@@ -74,7 +74,7 @@ friend void PageNumNotify( ViewShell* pVwSh,
static
long
nDDStartPosX
,
nDDStartPosY
;
static
Color
aTextColor
;
// text color; for the watering can
static
sal_B
ool
bTransparentBackColor
;
// transparent background
static
b
ool
bTransparentBackColor
;
// transparent background
static
Color
aTextBackColor
;
// text background; for the watering can
/*
...
...
@@ -265,9 +265,9 @@ public:
{
return
aTextBackColor
;
}
void
SetTextBackColor
(
const
Color
&
rCol
)
{
aTextBackColor
=
rCol
;
}
void
SetTextBackColorTransparent
(
sal_B
ool
bSet
)
void
SetTextBackColorTransparent
(
b
ool
bSet
)
{
bTransparentBackColor
=
bSet
;
}
sal_B
ool
IsTextBackColorTransparent
()
b
ool
IsTextBackColorTransparent
()
{
return
bTransparentBackColor
;
}
void
LockKeyInput
(
sal_Bool
bSet
){
bLockInput
=
bSet
;}
...
...
sw/source/ui/uiview/view1.cxx
Dosyayı görüntüle @
eed249f5
...
...
@@ -118,7 +118,7 @@ void SwView::Activate(sal_Bool bMDIActivate)
void
SwView
::
Deactivate
(
sal_Bool
bMDIActivate
)
{
extern
sal_B
ool
bFlushCharBuffer
;
extern
b
ool
bFlushCharBuffer
;
// Befinden sich noch Zeichen im Input Buffer?
if
(
bFlushCharBuffer
)
GetEditWin
().
FlushInBuffer
();
...
...
vcl/inc/vcl/svapp.hxx
Dosyayı görüntüle @
eed249f5
...
...
@@ -203,7 +203,7 @@ public:
static
sal_Bool
IsInModalMode
();
static
sal_uInt16
GetDispatchLevel
();
static
sal_B
ool
AnyInput
(
sal_uInt16
nType
=
VCL_INPUT_ANY
);
static
b
ool
AnyInput
(
sal_uInt16
nType
=
VCL_INPUT_ANY
);
static
sal_uLong
GetLastInputInterval
();
static
sal_Bool
IsUICaptured
();
...
...
vcl/source/app/svapp.cxx
Dosyayı görüntüle @
eed249f5
...
...
@@ -539,9 +539,9 @@ sal_uInt16 Application::GetDispatchLevel()
// -----------------------------------------------------------------------
sal_B
ool
Application
::
AnyInput
(
sal_uInt16
nType
)
b
ool
Application
::
AnyInput
(
sal_uInt16
nType
)
{
return
(
sal_Bool
)
ImplGetSVData
()
->
mpDefInst
->
AnyInput
(
nType
);
return
ImplGetSVData
()
->
mpDefInst
->
AnyInput
(
nType
);
}
// -----------------------------------------------------------------------
...
...
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