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
63e13695
Kaydet (Commit)
63e13695
authored
Eki 27, 2015
tarafından
Maxim Monastirsky
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
tdf#92207 sc: Make the text background color button work
Change-Id: I687a58e17ce30ced101c4585884106cff9b6292b
üst
f157d0fa
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
0 deletions
+4
-0
drtxtob.sdi
sc/sdi/drtxtob.sdi
+1
-0
scdll.cxx
sc/source/ui/app/scdll.cxx
+1
-0
futext.cxx
sc/source/ui/drawfunc/futext.cxx
+1
-0
drawview.cxx
sc/source/ui/view/drawview.cxx
+1
-0
No files found.
sc/sdi/drtxtob.sdi
Dosyayı görüntüle @
63e13695
...
@@ -63,6 +63,7 @@ interface TableDrawText
...
@@ -63,6 +63,7 @@ interface TableDrawText
SID_ATTR_CHAR_FONT [ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
SID_ATTR_CHAR_FONT [ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
SID_ATTR_CHAR_FONTHEIGHT [ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
SID_ATTR_CHAR_FONTHEIGHT [ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
SID_ATTR_CHAR_COLOR [ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
SID_ATTR_CHAR_COLOR [ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
SID_ATTR_CHAR_BACK_COLOR [ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
SID_ATTR_CHAR_WEIGHT [ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
SID_ATTR_CHAR_WEIGHT [ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
SID_ATTR_CHAR_POSTURE [ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
SID_ATTR_CHAR_POSTURE [ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
SID_ATTR_CHAR_UNDERLINE [ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
SID_ATTR_CHAR_UNDERLINE [ ExecMethod = ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
...
...
sc/source/ui/app/scdll.cxx
Dosyayı görüntüle @
63e13695
...
@@ -166,6 +166,7 @@ void ScDLL::Init()
...
@@ -166,6 +166,7 @@ void ScDLL::Init()
SvxFontNameToolBoxControl
::
RegisterControl
(
SID_ATTR_CHAR_FONT
,
pMod
);
SvxFontNameToolBoxControl
::
RegisterControl
(
SID_ATTR_CHAR_FONT
,
pMod
);
SvxColorToolBoxControl
::
RegisterControl
(
SID_ATTR_CHAR_COLOR
,
pMod
);
SvxColorToolBoxControl
::
RegisterControl
(
SID_ATTR_CHAR_COLOR
,
pMod
);
SvxColorToolBoxControl
::
RegisterControl
(
SID_BACKGROUND_COLOR
,
pMod
);
SvxColorToolBoxControl
::
RegisterControl
(
SID_BACKGROUND_COLOR
,
pMod
);
SvxColorToolBoxControl
::
RegisterControl
(
SID_ATTR_CHAR_BACK_COLOR
,
pMod
);
SvxFrameToolBoxControl
::
RegisterControl
(
SID_ATTR_BORDER
,
pMod
);
SvxFrameToolBoxControl
::
RegisterControl
(
SID_ATTR_BORDER
,
pMod
);
SvxFrameLineStyleToolBoxControl
::
RegisterControl
(
SID_FRAME_LINESTYLE
,
pMod
);
SvxFrameLineStyleToolBoxControl
::
RegisterControl
(
SID_FRAME_LINESTYLE
,
pMod
);
SvxColorToolBoxControl
::
RegisterControl
(
SID_FRAME_LINECOLOR
,
pMod
);
SvxColorToolBoxControl
::
RegisterControl
(
SID_FRAME_LINECOLOR
,
pMod
);
...
...
sc/source/ui/drawfunc/futext.cxx
Dosyayı görüntüle @
63e13695
...
@@ -56,6 +56,7 @@ static void lcl_InvalidateAttribs( SfxBindings& rBindings )
...
@@ -56,6 +56,7 @@ static void lcl_InvalidateAttribs( SfxBindings& rBindings )
rBindings
.
Invalidate
(
SID_ULINE_VAL_DOTTED
);
rBindings
.
Invalidate
(
SID_ULINE_VAL_DOTTED
);
rBindings
.
Invalidate
(
SID_ATTR_CHAR_OVERLINE
);
rBindings
.
Invalidate
(
SID_ATTR_CHAR_OVERLINE
);
rBindings
.
Invalidate
(
SID_ATTR_CHAR_COLOR
);
rBindings
.
Invalidate
(
SID_ATTR_CHAR_COLOR
);
rBindings
.
Invalidate
(
SID_ATTR_CHAR_BACK_COLOR
);
rBindings
.
Invalidate
(
SID_ATTR_CHAR_FONT
);
rBindings
.
Invalidate
(
SID_ATTR_CHAR_FONT
);
rBindings
.
Invalidate
(
SID_ATTR_CHAR_FONTHEIGHT
);
rBindings
.
Invalidate
(
SID_ATTR_CHAR_FONTHEIGHT
);
rBindings
.
Invalidate
(
SID_ATTR_PARA_ADJUST_LEFT
);
rBindings
.
Invalidate
(
SID_ATTR_PARA_ADJUST_LEFT
);
...
...
sc/source/ui/view/drawview.cxx
Dosyayı görüntüle @
63e13695
...
@@ -175,6 +175,7 @@ void ScDrawView::InvalidateDrawTextAttrs()
...
@@ -175,6 +175,7 @@ void ScDrawView::InvalidateDrawTextAttrs()
rBindings
.
Invalidate
(
SID_ULINE_VAL_DOTTED
);
rBindings
.
Invalidate
(
SID_ULINE_VAL_DOTTED
);
rBindings
.
Invalidate
(
SID_ATTR_CHAR_OVERLINE
);
rBindings
.
Invalidate
(
SID_ATTR_CHAR_OVERLINE
);
rBindings
.
Invalidate
(
SID_ATTR_CHAR_COLOR
);
rBindings
.
Invalidate
(
SID_ATTR_CHAR_COLOR
);
rBindings
.
Invalidate
(
SID_ATTR_CHAR_BACK_COLOR
);
rBindings
.
Invalidate
(
SID_ATTR_PARA_ADJUST_LEFT
);
rBindings
.
Invalidate
(
SID_ATTR_PARA_ADJUST_LEFT
);
rBindings
.
Invalidate
(
SID_ATTR_PARA_ADJUST_RIGHT
);
rBindings
.
Invalidate
(
SID_ATTR_PARA_ADJUST_RIGHT
);
rBindings
.
Invalidate
(
SID_ATTR_PARA_ADJUST_BLOCK
);
rBindings
.
Invalidate
(
SID_ATTR_PARA_ADJUST_BLOCK
);
...
...
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