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
3e1dc286
Kaydet (Commit)
3e1dc286
authored
Kas 26, 2014
tarafından
Maxim Monastirsky
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Cleanup some leftovers from the line spacing popup conversion
Change-Id: Ia2e35461958ea5d79241fa2231bd7ef164fc378d
üst
8e5ac3ba
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
25 deletions
+0
-25
ParaPropertyPanel.cxx
svx/source/sidebar/paragraph/ParaPropertyPanel.cxx
+0
-20
ParaPropertyPanel.hxx
svx/source/sidebar/paragraph/ParaPropertyPanel.hxx
+0
-5
No files found.
svx/source/sidebar/paragraph/ParaPropertyPanel.cxx
Dosyayı görüntüle @
3e1dc286
...
...
@@ -197,7 +197,6 @@ void ParaPropertyPanel::DataChanged (const DataChangedEvent& rEvent)
ParaPropertyPanel
::~
ParaPropertyPanel
()
{
delete
mpLnSPItem
;
}
void
ParaPropertyPanel
::
ReSize
(
bool
/* bSize */
)
...
...
@@ -487,10 +486,6 @@ void ParaPropertyPanel::NotifyItemUpdate(
StateChangedIndentImpl
(
nSID
,
eState
,
pState
);
break
;
case
SID_ATTR_PARA_LINESPACE
:
StateChangedLnSPImpl
(
nSID
,
eState
,
pState
);
break
;
case
SID_ATTR_PARA_ULSPACE
:
StateChangedULImpl
(
nSID
,
eState
,
pState
);
break
;
...
...
@@ -657,18 +652,6 @@ void ParaPropertyPanel::StateChangedIndentImpl( sal_uInt16 /*nSID*/, SfxItemStat
}
}
void
ParaPropertyPanel
::
StateChangedLnSPImpl
(
sal_uInt16
/*nSID*/
,
SfxItemState
eState
,
const
SfxPoolItem
*
pState
)
{
meLnSpState
=
eState
;
if
(
pState
&&
eState
>=
SfxItemState
::
DEFAULT
)
{
if
(
mpLnSPItem
)
delete
mpLnSPItem
;
mpLnSPItem
=
static_cast
<
SvxLineSpacingItem
*>
(
pState
->
Clone
());
}
}
void
ParaPropertyPanel
::
StateChangedULImpl
(
sal_uInt16
/*nSID*/
,
SfxItemState
eState
,
const
SfxPoolItem
*
pState
)
{
mpTopDist
->
SetMax
(
mpTopDist
->
Normalize
(
MAX_DURCH
),
MapToFieldUnit
(
m_eULSpaceUnit
)
);
...
...
@@ -798,8 +781,6 @@ ParaPropertyPanel::ParaPropertyPanel(vcl::Window* pParent,
maSpace3
(
SVX_RES
(
IMG_SPACE3
)),
maIndHang
(
SVX_RES
(
IMG_INDENT_HANG
)),
maTxtLeft
(
0
),
mpLnSPItem
(
NULL
),
meLnSpState
(
SfxItemState
::
DONTCARE
),
mbOutLineLeft
(
false
),
mbOutLineRight
(
false
),
maUpper
(
0
),
...
...
@@ -809,7 +790,6 @@ ParaPropertyPanel::ParaPropertyPanel(vcl::Window* pParent,
m_eLRSpaceUnit
(),
m_eULSpaceUnit
(),
maLRSpaceControl
(
SID_ATTR_PARA_LRSPACE
,
*
pBindings
,
*
this
),
maLNSpaceControl
(
SID_ATTR_PARA_LINESPACE
,
*
pBindings
,
*
this
),
maULSpaceControl
(
SID_ATTR_PARA_ULSPACE
,
*
pBindings
,
*
this
),
maOutLineLeftControl
(
SID_OUTLINE_LEFT
,
*
pBindings
,
*
this
,
OUString
(
"OutlineRight"
),
rxFrame
),
maOutLineRightControl
(
SID_OUTLINE_RIGHT
,
*
pBindings
,
*
this
,
OUString
(
"OutlineLeft"
),
rxFrame
),
...
...
svx/source/sidebar/paragraph/ParaPropertyPanel.hxx
Dosyayı görüntüle @
3e1dc286
...
...
@@ -86,9 +86,6 @@ private:
// Data Member
long
maTxtLeft
;
//Line spacing
SvxLineSpacingItem
*
mpLnSPItem
;
SfxItemState
meLnSpState
;
bool
mbOutLineLeft
;
bool
mbOutLineRight
;
long
maUpper
;
...
...
@@ -100,7 +97,6 @@ private:
SfxMapUnit
m_eULSpaceUnit
;
// Control Items
::
sfx2
::
sidebar
::
ControllerItem
maLRSpaceControl
;
::
sfx2
::
sidebar
::
ControllerItem
maLNSpaceControl
;
::
sfx2
::
sidebar
::
ControllerItem
maULSpaceControl
;
::
sfx2
::
sidebar
::
ControllerItem
maOutLineLeftControl
;
::
sfx2
::
sidebar
::
ControllerItem
maOutLineRightControl
;
...
...
@@ -127,7 +123,6 @@ private:
DECL_LINK
(
ClickUL_IncDec_Hdl_Impl
,
ToolBox
*
);
void
StateChangedIndentImpl
(
sal_uInt16
nSID
,
SfxItemState
eState
,
const
SfxPoolItem
*
pState
);
void
StateChangedLnSPImpl
(
sal_uInt16
nSID
,
SfxItemState
eState
,
const
SfxPoolItem
*
pState
);
void
StateChangedULImpl
(
sal_uInt16
nSID
,
SfxItemState
eState
,
const
SfxPoolItem
*
pState
);
void
StateChangeOutLineImpl
(
sal_uInt16
nSID
,
SfxItemState
eState
,
const
SfxPoolItem
*
pState
);
void
StateChangeIncDecImpl
(
sal_uInt16
nSID
,
SfxItemState
eState
,
const
SfxPoolItem
*
pState
);
...
...
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