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
312d903b
Kaydet (Commit)
312d903b
authored
Agu 31, 2014
tarafından
Maxim Monastirsky
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Register the item type based on the SID
Change-Id: If954191b71daf52c4f49fb7638e583cd0a2c97a5
üst
d9dde5e5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
scdll.cxx
sc/source/ui/app/scdll.cxx
+1
-1
sddll.cxx
sd/source/ui/app/sddll.cxx
+1
-1
tbcontrl.cxx
svx/source/tbxctrls/tbcontrl.cxx
+4
-2
No files found.
sc/source/ui/app/scdll.cxx
Dosyayı görüntüle @
312d903b
...
...
@@ -171,7 +171,7 @@ void ScDLL::Init()
SvxFillToolBoxControl
::
RegisterControl
(
0
,
pMod
);
SvxLineStyleToolBoxControl
::
RegisterControl
(
0
,
pMod
);
SvxLineWidthToolBoxControl
::
RegisterControl
(
0
,
pMod
);
SvxColorToolBoxControl
::
RegisterControl
(
0
,
pMod
);
SvxColorToolBoxControl
::
RegisterControl
(
SID_ATTR_LINE_COLOR
,
pMod
);
SvxLineEndToolBoxControl
::
RegisterControl
(
SID_ATTR_LINEEND_STYLE
,
pMod
);
SvxStyleToolBoxControl
::
RegisterControl
(
SID_STYLE_APPLY
,
pMod
);
SvxFontNameToolBoxControl
::
RegisterControl
(
SID_ATTR_CHAR_FONT
,
pMod
);
...
...
sd/source/ui/app/sddll.cxx
Dosyayı görüntüle @
312d903b
...
...
@@ -207,7 +207,7 @@ void SdDLL::RegisterControllers()
SvxFillToolBoxControl
::
RegisterControl
(
0
,
pMod
);
SvxLineStyleToolBoxControl
::
RegisterControl
(
0
,
pMod
);
SvxLineWidthToolBoxControl
::
RegisterControl
(
0
,
pMod
);
SvxColorToolBoxControl
::
RegisterControl
(
0
,
pMod
);
SvxColorToolBoxControl
::
RegisterControl
(
SID_ATTR_LINE_COLOR
,
pMod
);
SvxLineEndToolBoxControl
::
RegisterControl
(
SID_ATTR_LINEEND_STYLE
,
pMod
);
...
...
svx/source/tbxctrls/tbcontrl.cxx
Dosyayı görüntüle @
312d903b
...
...
@@ -2536,8 +2536,10 @@ SfxToolBoxControl* SvxColorToolBoxControl::CreateImpl( sal_uInt16 nSlotId, sal_u
void
SvxColorToolBoxControl
::
RegisterControl
(
sal_uInt16
nSlotId
,
SfxModule
*
pMod
)
{
SfxToolBoxControl
::
RegisterToolBoxControl
(
pMod
,
new
SfxTbxCtrlFactory
(
SvxColorToolBoxControl
::
CreateImpl
,
TYPE
(
SvxColorItem
),
nSlotId
)
);
SfxToolBoxControl
::
RegisterToolBoxControl
(
pMod
,
new
SfxTbxCtrlFactory
(
SvxColorToolBoxControl
::
CreateImpl
,
TYPE
(
XLineColorItem
),
nSlotId
)
);
if
(
nSlotId
==
SID_ATTR_LINE_COLOR
)
SfxToolBoxControl
::
RegisterToolBoxControl
(
pMod
,
new
SfxTbxCtrlFactory
(
SvxColorToolBoxControl
::
CreateImpl
,
TYPE
(
XLineColorItem
),
nSlotId
)
);
else
SfxToolBoxControl
::
RegisterToolBoxControl
(
pMod
,
new
SfxTbxCtrlFactory
(
SvxColorToolBoxControl
::
CreateImpl
,
TYPE
(
SvxColorItem
),
nSlotId
)
);
}
// class SvxFrameToolBoxControl --------------------------------------------
...
...
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