summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-05-05 13:46:44 +0200
committerMichael Stahl <mstahl@redhat.com>2015-05-05 15:51:11 +0200
commit8fca0c44e8f21fa2ee1000665856292d5a1c44e9 (patch)
treee750236facc3fd44b051a70aaa0e81be0fc2c002 /forms
parentf24590521c5ffea13c0aecdb2f30fdd39bbfbc45 (diff)
vcl: rename other members of StateChangedType for consistency
Change-Id: Ifd3339813e5d3dfb54566fd226aaf2d2a199d59a
Diffstat (limited to 'forms')
-rw-r--r--forms/source/richtext/richtextimplcontrol.hxx2
-rw-r--r--forms/source/richtext/richtextvclcontrol.cxx6
-rw-r--r--forms/source/solar/control/navtoolbar.cxx8
3 files changed, 8 insertions, 8 deletions
diff --git a/forms/source/richtext/richtextimplcontrol.hxx b/forms/source/richtext/richtextimplcontrol.hxx
index 2f0acb1da700..ce4f22179d53 100644
--- a/forms/source/richtext/richtextimplcontrol.hxx
+++ b/forms/source/richtext/richtextimplcontrol.hxx
@@ -127,7 +127,7 @@ namespace frm
*/
void notifyZoomChanged();
- /** to be called when the StateChangedType::INITSHOW event arrives
+ /** to be called when the StateChangedType::InitShow event arrives
*/
void notifyInitShow();
diff --git a/forms/source/richtext/richtextvclcontrol.cxx b/forms/source/richtext/richtextvclcontrol.cxx
index d7286204921c..80481370836e 100644
--- a/forms/source/richtext/richtextvclcontrol.cxx
+++ b/forms/source/richtext/richtextvclcontrol.cxx
@@ -174,16 +174,16 @@ namespace frm
void RichTextControl::StateChanged( StateChangedType _nStateChange )
{
- if ( _nStateChange == StateChangedType::STYLE )
+ if ( _nStateChange == StateChangedType::Style )
{
SetStyle( implInitStyle( GetStyle() ) );
m_pImpl->notifyStyleChanged();
}
- else if ( _nStateChange == StateChangedType::ZOOM )
+ else if ( _nStateChange == StateChangedType::Zoom )
{
m_pImpl->notifyZoomChanged();
}
- else if ( _nStateChange == StateChangedType::INITSHOW )
+ else if ( _nStateChange == StateChangedType::InitShow )
{
m_pImpl->notifyInitShow();
}
diff --git a/forms/source/solar/control/navtoolbar.cxx b/forms/source/solar/control/navtoolbar.cxx
index 9d4a1d87aa45..d10d4484e2e0 100644
--- a/forms/source/solar/control/navtoolbar.cxx
+++ b/forms/source/solar/control/navtoolbar.cxx
@@ -478,23 +478,23 @@ namespace frm
switch ( nType )
{
- case StateChangedType::ZOOM:
+ case StateChangedType::Zoom:
// m_pToolbar->SetZoom( GetZoom() );
// forEachItemWindow( setItemWindowZoom, NULL );
// the ToolBox class is not zoomable at the moment, so
// we better have no zoom at all instead of only half a zoom ...
break;
- case StateChangedType::CONTROLFONT:
+ case StateChangedType::ControlFont:
forEachItemWindow( &NavigationToolBar::setItemControlFont, NULL );
forEachItemWindow( &NavigationToolBar::adjustItemWindowWidth, NULL );
break;
- case StateChangedType::CONTROLFOREGROUND:
+ case StateChangedType::ControlForeground:
forEachItemWindow( &NavigationToolBar::setItemControlForeground, NULL );
break;
- case StateChangedType::MIRRORING:
+ case StateChangedType::Mirroring:
{
sal_Bool bIsRTLEnabled( IsRTLEnabled() );
m_pToolbar->EnableRTL( bIsRTLEnabled );