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
f5864e8f
Kaydet (Commit)
f5864e8f
authored
Mar 24, 2014
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
svtools: sal_Bool->bool
Change-Id: Ia0280d3d4f2d5b8a93a37a93847951391e928028
üst
514d33fa
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
71 additions
and
71 deletions
+71
-71
dlg_CreationWizard.cxx
chart2/source/controller/dialogs/dlg_CreationWizard.cxx
+1
-1
dbwizsetup.cxx
dbaccess/source/ui/dlg/dbwizsetup.cxx
+1
-1
roadmap.hxx
include/svtools/roadmap.hxx
+10
-10
roadmapwizard.hxx
include/svtools/roadmapwizard.hxx
+1
-1
rtfout.hxx
include/svtools/rtfout.hxx
+2
-2
ruler.hxx
include/svtools/ruler.hxx
+22
-22
roadmap.cxx
svtools/source/control/roadmap.cxx
+31
-31
ruler.cxx
svtools/source/control/ruler.cxx
+0
-0
roadmapwizard.cxx
svtools/source/dialogs/roadmapwizard.cxx
+1
-1
rtfout.cxx
svtools/source/svrtf/rtfout.cxx
+2
-2
No files found.
chart2/source/controller/dialogs/dlg_CreationWizard.cxx
Dosyayı görüntüle @
f5864e8f
...
...
@@ -88,7 +88,7 @@ CreationWizard::CreationWizard( Window* pParent, const uno::Reference< frame::XM
,
WZS_INVALID_STATE
);
this
->
SetRoadmapHelpId
(
HID_SCH_WIZARD_ROADMAP
);
this
->
SetRoadmapInteractive
(
sal_T
rue
);
this
->
SetRoadmapInteractive
(
t
rue
);
Size
aAdditionalRoadmapSize
(
LogicToPixel
(
Size
(
85
,
0
),
MAP_APPFONT
)
);
Size
aSize
(
this
->
GetSizePixel
()
);
aSize
.
Width
()
+=
aAdditionalRoadmapSize
.
Width
();
...
...
dbaccess/source/ui/dlg/dbwizsetup.cxx
Dosyayı görüntüle @
f5864e8f
...
...
@@ -181,7 +181,7 @@ ODbTypeWizDialogSetup::ODbTypeWizDialogSetup(Window* _pParent
m_pCancel
->
SetHelpId
(
HID_DBWIZ_CANCEL
);
m_pFinish
->
SetHelpId
(
HID_DBWIZ_FINISH
);
m_pHelp
->
SetUniqueId
(
UID_DBWIZ_HELP
);
SetRoadmapInteractive
(
sal_T
rue
);
SetRoadmapInteractive
(
t
rue
);
ActivatePage
();
}
...
...
include/svtools/roadmap.hxx
Dosyayı görüntüle @
f5864e8f
...
...
@@ -59,28 +59,28 @@ namespace svt
ORoadmap
(
Window
*
_pParent
,
WinBits
_nWinStyle
=
0
);
~
ORoadmap
(
);
void
SetRoadmapBitmap
(
const
BitmapEx
&
maBitmap
,
sal_Bool
_bInvalidate
=
sal_T
rue
);
void
SetRoadmapBitmap
(
const
BitmapEx
&
maBitmap
,
bool
_bInvalidate
=
t
rue
);
void
EnableRoadmapItem
(
ItemId
_nItemId
,
sal_B
ool
_bEnable
,
ItemIndex
_nStartIndex
=
0
);
void
EnableRoadmapItem
(
ItemId
_nItemId
,
b
ool
_bEnable
,
ItemIndex
_nStartIndex
=
0
);
void
ChangeRoadmapItemLabel
(
ItemId
_nID
,
const
OUString
&
sLabel
,
ItemIndex
_nStartIndex
=
0
);
void
ChangeRoadmapItemID
(
ItemId
_nID
,
ItemId
_NewID
,
ItemIndex
_nStartIndex
=
0
);
void
SetRoadmapInteractive
(
sal_B
ool
_bInteractive
);
sal_Bool
IsRoadmapInteractive
();
void
SetRoadmapInteractive
(
b
ool
_bInteractive
);
bool
IsRoadmapInteractive
();
void
SetRoadmapComplete
(
sal_B
ool
_bComplete
);
sal_Bool
IsRoadmapComplete
()
const
;
void
SetRoadmapComplete
(
b
ool
_bComplete
);
bool
IsRoadmapComplete
()
const
;
ItemIndex
GetItemCount
()
const
;
ItemId
GetItemID
(
ItemIndex
_nIndex
)
const
;
void
InsertRoadmapItem
(
ItemIndex
_Index
,
const
OUString
&
_RoadmapItem
,
ItemId
_nUniqueId
,
sal_Bool
_bEnabled
=
sal_T
rue
);
void
ReplaceRoadmapItem
(
ItemIndex
_Index
,
const
OUString
&
_RoadmapItem
,
ItemId
_nUniqueId
,
sal_B
ool
_bEnabled
);
void
InsertRoadmapItem
(
ItemIndex
_Index
,
const
OUString
&
_RoadmapItem
,
ItemId
_nUniqueId
,
bool
_bEnabled
=
t
rue
);
void
ReplaceRoadmapItem
(
ItemIndex
_Index
,
const
OUString
&
_RoadmapItem
,
ItemId
_nUniqueId
,
b
ool
_bEnabled
);
void
DeleteRoadmapItem
(
ItemIndex
_nIndex
);
ItemId
GetCurrentRoadmapItemID
()
const
;
sal_Bool
SelectRoadmapItemByID
(
ItemId
_nItemID
);
bool
SelectRoadmapItemByID
(
ItemId
_nItemID
);
void
SetItemSelectHdl
(
const
Link
&
_rHdl
);
Link
GetItemSelectHdl
(
)
const
;
...
...
@@ -110,7 +110,7 @@ namespace svt
ItemId
GetNextAvailableItemId
(
ItemIndex
_NewIndex
);
ItemId
GetPreviousAvailableItemId
(
ItemIndex
_NewIndex
);
RoadmapItem
*
GetByPointer
(
Window
*
pWindow
);
RoadmapItem
*
InsertHyperLabel
(
ItemIndex
_Index
,
const
OUString
&
_aStr
,
ItemId
_RMID
,
sal_Bool
_bEnabled
=
sal_T
rue
);
RoadmapItem
*
InsertHyperLabel
(
ItemIndex
_Index
,
const
OUString
&
_aStr
,
ItemId
_RMID
,
bool
_bEnabled
=
t
rue
);
void
UpdatefollowingHyperLabels
(
ItemIndex
_Index
);
};
...
...
include/svtools/roadmapwizard.hxx
Dosyayı görüntüle @
f5864e8f
...
...
@@ -81,7 +81,7 @@ namespace svt
void
SetRoadmapHelpId
(
const
OString
&
_rId
);
void
SetRoadmapInteractive
(
sal_B
ool
_bInteractive
);
void
SetRoadmapInteractive
(
b
ool
_bInteractive
);
virtual
void
Resize
();
virtual
void
StateChanged
(
StateChangedType
nStateChange
);
...
...
include/svtools/rtfout.hxx
Dosyayı görüntüle @
f5864e8f
...
...
@@ -36,10 +36,10 @@ public:
static
SvStream
&
Out_Char
(
SvStream
&
,
sal_Unicode
cChar
,
int
*
pUCMode
,
rtl_TextEncoding
eDestEnc
=
RTL_TEXTENCODING_MS_1252
,
sal_Bool
bWriteHelpFile
=
sal_F
alse
);
bool
bWriteHelpFile
=
f
alse
);
static
SvStream
&
Out_String
(
SvStream
&
,
const
rtl
::
OUString
&
,
rtl_TextEncoding
eDestEnc
=
RTL_TEXTENCODING_MS_1252
,
sal_Bool
bWriteHelpFile
=
sal_F
alse
);
bool
bWriteHelpFile
=
f
alse
);
static
SvStream
&
Out_Hex
(
SvStream
&
,
sal_uLong
nHex
,
sal_uInt8
nLen
);
};
...
...
include/svtools/ruler.hxx
Dosyayı görüntüle @
f5864e8f
...
...
@@ -645,13 +645,13 @@ private:
MapUnit
meSourceUnit
;
FieldUnit
meUnit
;
Fraction
maZoom
;
sal_Bool
mbCalc
;
sal_Bool
mbFormat
;
sal_Bool
mbDrag
;
sal_Bool
mbDragDelete
;
sal_Bool
mbDragCanceled
;
sal_Bool
mbAutoWinWidth
;
sal_Bool
mbActive
;
bool
mbCalc
;
bool
mbFormat
;
bool
mbDrag
;
bool
mbDragDelete
;
bool
mbDragCanceled
;
bool
mbAutoWinWidth
;
bool
mbActive
;
sal_uInt8
mnUpdateFlags
;
RulerSelection
maHoverSelection
;
...
...
@@ -681,22 +681,22 @@ private:
using
Window
::
ImplInit
;
SVT_DLLPRIVATE
void
ImplInit
(
WinBits
nWinBits
);
SVT_DLLPRIVATE
void
ImplInitSettings
(
sal_Bool
bFont
,
sal_Bool
bForeground
,
sal_B
ool
bBackground
);
SVT_DLLPRIVATE
void
ImplInitSettings
(
bool
bFont
,
bool
bForeground
,
b
ool
bBackground
);
SVT_DLLPRIVATE
void
ImplCalc
();
SVT_DLLPRIVATE
void
ImplFormat
();
SVT_DLLPRIVATE
void
ImplInitExtraField
(
sal_B
ool
bUpdate
);
SVT_DLLPRIVATE
void
ImplInvertLines
(
sal_Bool
bErase
=
sal_F
alse
);
SVT_DLLPRIVATE
void
ImplInitExtraField
(
b
ool
bUpdate
);
SVT_DLLPRIVATE
void
ImplInvertLines
(
bool
bErase
=
f
alse
);
SVT_DLLPRIVATE
void
ImplDraw
();
SVT_DLLPRIVATE
void
ImplDrawExtra
(
sal_Bool
bPaint
=
sal_F
alse
);
SVT_DLLPRIVATE
void
ImplUpdate
(
sal_Bool
bMustCalc
=
sal_F
alse
);
SVT_DLLPRIVATE
void
ImplDrawExtra
(
bool
bPaint
=
f
alse
);
SVT_DLLPRIVATE
void
ImplUpdate
(
bool
bMustCalc
=
f
alse
);
using
Window
::
ImplHitTest
;
SVT_DLLPRIVATE
sal_B
ool
ImplHitTest
(
const
Point
&
rPosition
,
SVT_DLLPRIVATE
b
ool
ImplHitTest
(
const
Point
&
rPosition
,
RulerSelection
*
pHitTest
,
sal_Bool
bRequiredStyle
=
sal_F
alse
,
bool
bRequiredStyle
=
f
alse
,
sal_uInt16
nRequiredStyle
=
0
)
const
;
SVT_DLLPRIVATE
sal_Bool
ImplDocHitTest
(
const
Point
&
rPos
,
RulerType
eDragType
,
RulerSelection
*
pHitTest
)
const
;
SVT_DLLPRIVATE
sal_Bool
ImplStartDrag
(
RulerSelection
*
pHitTest
,
sal_uInt16
nModifier
);
SVT_DLLPRIVATE
bool
ImplDocHitTest
(
const
Point
&
rPos
,
RulerType
eDragType
,
RulerSelection
*
pHitTest
)
const
;
SVT_DLLPRIVATE
bool
ImplStartDrag
(
RulerSelection
*
pHitTest
,
sal_uInt16
nModifier
);
SVT_DLLPRIVATE
void
ImplDrag
(
const
Point
&
rPos
);
SVT_DLLPRIVATE
void
ImplEndDrag
();
...
...
@@ -732,7 +732,7 @@ public:
void
Activate
();
void
Deactivate
();
sal_Bool
IsActive
()
const
{
return
mbActive
;
}
bool
IsActive
()
const
{
return
mbActive
;
}
void
SetWinPos
(
long
nOff
=
0
,
long
nWidth
=
0
);
long
GetWinOffset
()
const
{
return
mnWinOff
;
}
...
...
@@ -757,17 +757,17 @@ public:
sal_uInt16
GetExtraClicks
()
const
{
return
mnExtraClicks
;
}
sal_uInt16
GetExtraModifier
()
const
{
return
mnExtraModifier
;
}
sal_Bool
StartDocDrag
(
const
MouseEvent
&
rMEvt
,
bool
StartDocDrag
(
const
MouseEvent
&
rMEvt
,
RulerType
eDragType
=
RULER_TYPE_DONTKNOW
);
RulerType
GetDragType
()
const
{
return
meDragType
;
}
long
GetDragPos
()
const
{
return
mnDragPos
;
}
sal_uInt16
GetDragAryPos
()
const
{
return
mnDragAryPos
;
}
sal_uInt16
GetDragSize
()
const
{
return
mnDragSize
;
}
sal_Bool
IsDragDelete
()
const
{
return
mbDragDelete
;
}
sal_Bool
IsDragCanceled
()
const
{
return
mbDragCanceled
;
}
bool
IsDragDelete
()
const
{
return
mbDragDelete
;
}
bool
IsDragCanceled
()
const
{
return
mbDragCanceled
;
}
sal_uInt16
GetDragScroll
()
const
{
return
mnDragScroll
;
}
sal_uInt16
GetDragModifier
()
const
{
return
mnDragModifier
;
}
sal_Bool
IsDrag
()
const
{
return
mbDrag
;
}
bool
IsDrag
()
const
{
return
mbDrag
;
}
void
CancelDrag
();
long
GetClickPos
()
const
{
return
mnDragPos
;
}
RulerType
GetClickType
()
const
{
return
meDragType
;
}
...
...
@@ -816,7 +816,7 @@ public:
void
SetExtraDownHdl
(
const
Link
&
rLink
)
{
maExtraDownHdl
=
rLink
;
}
const
Link
&
GetExtraDownHdl
()
const
{
return
maExtraDownHdl
;
}
void
SetTextRTL
(
sal_B
ool
bRTL
);
void
SetTextRTL
(
b
ool
bRTL
);
bool
GetTextRTL
();
void
SetCharWidth
(
long
nWidth
)
{
mnCharWidth
=
nWidth
;
}
void
SetLineHeight
(
long
nHeight
)
{
mnLineHeight
=
nHeight
;
}
...
...
svtools/source/control/roadmap.cxx
Dosyayı görüntüle @
f5864e8f
...
...
@@ -98,11 +98,11 @@ namespace svt
void
SetPosition
(
RoadmapItem
*
OldHyperLabel
);
void
ToggleBackgroundColor
(
const
Color
&
_rGBColor
);
void
SetInteractive
(
sal_B
ool
_bInteractive
);
void
SetInteractive
(
b
ool
_bInteractive
);
void
SetClickHdl
(
const
Link
&
rLink
);
void
Enable
(
sal_Bool
bEnable
=
sal_T
rue
);
sal_B
ool
IsEnabled
()
const
;
void
Enable
(
bool
bEnable
=
t
rue
);
b
ool
IsEnabled
()
const
;
void
GrabFocus
();
bool
Contains
(
const
Window
*
_pWindow
)
const
;
...
...
@@ -125,16 +125,16 @@ namespace svt
BitmapEx
m_aPicture
;
HL_Vector
m_aRoadmapSteps
;
ItemId
m_iCurItemID
;
sal_Bool
m_bInteractive
;
sal_Bool
m_bComplete
;
bool
m_bInteractive
;
bool
m_bComplete
;
Size
m_aItemSizePixel
;
public
:
RoadmapImpl
(
const
ORoadmap
&
_rAntiImpl
)
:
m_rAntiImpl
(
_rAntiImpl
)
,
m_iCurItemID
(
-
1
)
,
m_bInteractive
(
sal_T
rue
)
,
m_bComplete
(
sal_T
rue
)
,
m_bInteractive
(
t
rue
)
,
m_bComplete
(
t
rue
)
,
InCompleteHyperLabel
(
NULL
)
{
}
...
...
@@ -153,11 +153,11 @@ namespace svt
void
setCurItemID
(
ItemId
i
)
{
m_iCurItemID
=
i
;
}
ItemId
getCurItemID
()
const
{
return
m_iCurItemID
;
}
void
setInteractive
(
const
sal_B
ool
_bInteractive
)
{
m_bInteractive
=
_bInteractive
;
}
sal_Bool
isInteractive
()
const
{
return
m_bInteractive
;
};
void
setInteractive
(
const
b
ool
_bInteractive
)
{
m_bInteractive
=
_bInteractive
;
}
bool
isInteractive
()
const
{
return
m_bInteractive
;
};
void
setComplete
(
const
sal_B
ool
_bComplete
)
{
m_bComplete
=
_bComplete
;
}
sal_Bool
isComplete
()
const
{
return
m_bComplete
;
};
void
setComplete
(
const
b
ool
_bComplete
)
{
m_bComplete
=
_bComplete
;
}
bool
isComplete
()
const
{
return
m_bComplete
;
};
void
setPicture
(
const
BitmapEx
&
_rPic
)
{
m_aPicture
=
_rPic
;
}
const
BitmapEx
&
getPicture
(
)
const
{
return
m_aPicture
;
}
...
...
@@ -212,7 +212,7 @@ namespace svt
SetBackground
(
Wallpaper
(
rStyleSettings
.
GetFieldColor
()
)
);
m_pImpl
->
InCompleteHyperLabel
=
NULL
;
m_pImpl
->
setCurItemID
(
-
1
);
m_pImpl
->
setComplete
(
sal_T
rue
);
m_pImpl
->
setComplete
(
t
rue
);
// Roadmap control should be reachable as one unit with a Tab key
// the next Tab key should spring out of the control.
...
...
@@ -264,7 +264,7 @@ namespace svt
RoadmapItem
*
ORoadmap
::
InsertHyperLabel
(
ItemIndex
_Index
,
const
OUString
&
_sLabel
,
ItemId
_RMID
,
sal_B
ool
_bEnabled
)
RoadmapItem
*
ORoadmap
::
InsertHyperLabel
(
ItemIndex
_Index
,
const
OUString
&
_sLabel
,
ItemId
_RMID
,
b
ool
_bEnabled
)
{
if
(
m_pImpl
->
getItemCount
()
==
0
)
m_pImpl
->
initItemSize
();
...
...
@@ -280,7 +280,7 @@ namespace svt
}
else
{
pItem
->
SetInteractive
(
sal_F
alse
);
pItem
->
SetInteractive
(
f
alse
);
}
pItem
->
SetPosition
(
pOldItem
);
pItem
->
Update
(
_Index
,
_sLabel
);
...
...
@@ -293,7 +293,7 @@ namespace svt
}
void
ORoadmap
::
SetRoadmapBitmap
(
const
BitmapEx
&
_rBmp
,
sal_B
ool
_bInvalidate
)
void
ORoadmap
::
SetRoadmapBitmap
(
const
BitmapEx
&
_rBmp
,
b
ool
_bInvalidate
)
{
m_pImpl
->
setPicture
(
_rBmp
);
if
(
_bInvalidate
)
...
...
@@ -301,7 +301,7 @@ namespace svt
}
void
ORoadmap
::
SetRoadmapInteractive
(
sal_B
ool
_bInteractive
)
void
ORoadmap
::
SetRoadmapInteractive
(
b
ool
_bInteractive
)
{
m_pImpl
->
setInteractive
(
_bInteractive
);
...
...
@@ -316,15 +316,15 @@ namespace svt
}
sal_B
ool
ORoadmap
::
IsRoadmapInteractive
()
b
ool
ORoadmap
::
IsRoadmapInteractive
()
{
return
m_pImpl
->
isInteractive
();
}
void
ORoadmap
::
SetRoadmapComplete
(
sal_B
ool
_bComplete
)
void
ORoadmap
::
SetRoadmapComplete
(
b
ool
_bComplete
)
{
sal_B
ool
bWasComplete
=
m_pImpl
->
isComplete
();
b
ool
bWasComplete
=
m_pImpl
->
isComplete
();
m_pImpl
->
setComplete
(
_bComplete
);
if
(
_bComplete
)
{
...
...
@@ -365,7 +365,7 @@ namespace svt
}
void
ORoadmap
::
ReplaceRoadmapItem
(
ItemIndex
_Index
,
const
OUString
&
_RoadmapItem
,
ItemId
_RMID
,
sal_B
ool
_bEnabled
)
void
ORoadmap
::
ReplaceRoadmapItem
(
ItemIndex
_Index
,
const
OUString
&
_RoadmapItem
,
ItemId
_RMID
,
b
ool
_bEnabled
)
{
RoadmapItem
*
pItem
=
GetByIndex
(
_Index
);
if
(
pItem
!=
NULL
)
...
...
@@ -392,7 +392,7 @@ namespace svt
}
void
ORoadmap
::
InsertRoadmapItem
(
ItemIndex
_Index
,
const
OUString
&
_RoadmapItem
,
ItemId
_nUniqueId
,
sal_B
ool
_bEnabled
)
void
ORoadmap
::
InsertRoadmapItem
(
ItemIndex
_Index
,
const
OUString
&
_RoadmapItem
,
ItemId
_nUniqueId
,
b
ool
_bEnabled
)
{
InsertHyperLabel
(
_Index
,
_RoadmapItem
,
_nUniqueId
,
_bEnabled
);
// Todo: YPos is superfluous, if items are always appended
...
...
@@ -410,13 +410,13 @@ namespace svt
}
sal_B
ool
ORoadmap
::
IsRoadmapComplete
(
)
const
b
ool
ORoadmap
::
IsRoadmapComplete
(
)
const
{
return
m_pImpl
->
isComplete
();
}
void
ORoadmap
::
EnableRoadmapItem
(
ItemId
_nItemId
,
sal_B
ool
_bEnable
,
ItemIndex
_nStartIndex
)
void
ORoadmap
::
EnableRoadmapItem
(
ItemId
_nItemId
,
b
ool
_bEnable
,
ItemIndex
_nStartIndex
)
{
RoadmapItem
*
pItem
=
GetByID
(
_nItemId
,
_nStartIndex
);
if
(
pItem
!=
NULL
)
...
...
@@ -564,7 +564,7 @@ namespace svt
}
sal_B
ool
ORoadmap
::
SelectRoadmapItemByID
(
ItemId
_nNewID
)
b
ool
ORoadmap
::
SelectRoadmapItemByID
(
ItemId
_nNewID
)
{
DeselectOldRoadmapItems
();
RoadmapItem
*
pItem
=
GetByID
(
_nNewID
);
...
...
@@ -579,10 +579,10 @@ namespace svt
m_pImpl
->
setCurItemID
(
_nNewID
);
Select
();
return
sal_T
rue
;
return
t
rue
;
}
}
return
sal_F
alse
;
return
f
alse
;
}
...
...
@@ -676,9 +676,9 @@ namespace svt
}
IMPL_LINK
(
ORoadmap
,
ImplClickHdl
,
HyperLabel
*
,
_CurHyperLabel
)
IMPL_LINK
(
ORoadmap
,
ImplClickHdl
,
HyperLabel
*
,
_CurHyperLabel
)
{
return
SelectRoadmapItemByID
(
_CurHyperLabel
->
GetID
()
);
return
SelectRoadmapItemByID
(
_CurHyperLabel
->
GetID
()
)
?
1
:
0
;
}
...
...
@@ -732,7 +732,7 @@ namespace svt
}
void
RoadmapItem
::
SetInteractive
(
sal_B
ool
_bInteractive
)
void
RoadmapItem
::
SetInteractive
(
b
ool
_bInteractive
)
{
if
(
mpDescription
)
mpDescription
->
SetInteractive
(
_bInteractive
);
...
...
@@ -802,14 +802,14 @@ namespace svt
}
void
RoadmapItem
::
Enable
(
sal_B
ool
_bEnable
)
void
RoadmapItem
::
Enable
(
b
ool
_bEnable
)
{
mpID
->
Enable
(
_bEnable
);
mpDescription
->
Enable
(
_bEnable
);
}
sal_B
ool
RoadmapItem
::
IsEnabled
()
const
b
ool
RoadmapItem
::
IsEnabled
()
const
{
return
mpID
->
IsEnabled
();
}
...
...
svtools/source/control/ruler.cxx
Dosyayı görüntüle @
f5864e8f
This diff is collapsed.
Click to expand it.
svtools/source/dialogs/roadmapwizard.cxx
Dosyayı görüntüle @
f5864e8f
...
...
@@ -219,7 +219,7 @@ namespace svt
}
void
RoadmapWizard
::
SetRoadmapInteractive
(
sal_B
ool
_bInteractive
)
void
RoadmapWizard
::
SetRoadmapInteractive
(
b
ool
_bInteractive
)
{
m_pImpl
->
pRoadmap
->
SetRoadmapInteractive
(
_bInteractive
);
}
...
...
svtools/source/svrtf/rtfout.cxx
Dosyayı görüntüle @
f5864e8f
...
...
@@ -25,7 +25,7 @@
#include <svtools/rtfout.hxx>
SvStream
&
RTFOutFuncs
::
Out_Char
(
SvStream
&
rStream
,
sal_Unicode
c
,
int
*
pUCMode
,
rtl_TextEncoding
eDestEnc
,
sal_B
ool
bWriteHelpFile
)
int
*
pUCMode
,
rtl_TextEncoding
eDestEnc
,
b
ool
bWriteHelpFile
)
{
const
sal_Char
*
pStr
=
0
;
switch
(
c
)
...
...
@@ -148,7 +148,7 @@ SvStream& RTFOutFuncs::Out_Char(SvStream& rStream, sal_Unicode c,
}
SvStream
&
RTFOutFuncs
::
Out_String
(
SvStream
&
rStream
,
const
OUString
&
rStr
,
rtl_TextEncoding
eDestEnc
,
sal_B
ool
bWriteHelpFile
)
rtl_TextEncoding
eDestEnc
,
b
ool
bWriteHelpFile
)
{
int
nUCMode
=
1
;
for
(
sal_Int32
n
=
0
;
n
<
rStr
.
getLength
();
++
n
)
...
...
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