summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-01-25 09:54:45 +0100
committerThomas Arnhold <thomas@arnhold.org>2014-01-25 09:54:45 +0100
commit61cb4a8e956f7471ae654955bc5aa77a67852d34 (patch)
tree9ee964ad690e4b5c8cef13fc313dbdfa384235ff /cui
parent8b1cf5ab9e54e20282581088c13d470d66afaf8a (diff)
some more CMYK -> CYMK
Diffstat (limited to 'cui')
-rw-r--r--cui/source/inc/cuitabarea.hxx2
-rw-r--r--cui/source/tabpages/tpcolor.cxx6
2 files changed, 4 insertions, 4 deletions
diff --git a/cui/source/inc/cuitabarea.hxx b/cui/source/inc/cuitabarea.hxx
index 2b8ed3223be3..47d6bb417e9b 100644
--- a/cui/source/inc/cuitabarea.hxx
+++ b/cui/source/inc/cuitabarea.hxx
@@ -661,7 +661,7 @@ private:
NumericField* m_pG;
NumericField* m_pB;
- VclContainer* m_pCYMK;
+ VclContainer* m_pCMYK;
MetricField* m_pC;
MetricField* m_pY;
MetricField* m_pM;
diff --git a/cui/source/tabpages/tpcolor.cxx b/cui/source/tabpages/tpcolor.cxx
index b904eaa8bb08..b5edc2d1163d 100644
--- a/cui/source/tabpages/tpcolor.cxx
+++ b/cui/source/tabpages/tpcolor.cxx
@@ -335,7 +335,7 @@ SvxColorTabPage::SvxColorTabPage(Window* pParent, const SfxItemSet& rInAttrs)
get(m_pR, "R");
get(m_pG, "G");
get(m_pB, "B");
- get(m_pCYMK, "cmyk");
+ get(m_pCMYK, "cmyk");
get(m_pC, "C");
get(m_pY, "Y");
get(m_pM, "M");
@@ -981,7 +981,7 @@ IMPL_LINK_NOARG(SvxColorTabPage, SelectColorModelHdl_Impl)
case CM_RGB:
{
m_pRGB->Show();
- m_pCYMK->Hide();
+ m_pCMYK->Hide();
m_pR->SetValue( ColorToPercent_Impl( aCurrentColor.GetRed() ) );
m_pG->SetValue( ColorToPercent_Impl( aCurrentColor.GetGreen() ) );
@@ -992,7 +992,7 @@ IMPL_LINK_NOARG(SvxColorTabPage, SelectColorModelHdl_Impl)
case CM_CMYK:
{
- m_pCYMK->Show();
+ m_pCMYK->Show();
m_pRGB->Hide();
m_pC->SetValue( ColorToPercent_Impl( aCurrentColor.GetRed() ) );